<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.table-wrapper {
    overflow-x: auto;
}
.merged-col {
    display: none;
}
@media (max-width: 768px) {
    .merged-col {
        display: table-cell;
    }
    .original-col {
        display: none;
    }
}
.form-control {
    height: 48px; /* Ajustez cette valeur selon vos besoins */
}
.btn {
    height: 48px; /* Ajustez cette valeur selon vos besoins */
}
.circular-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
}
.circular-button:hover {
    background-color: #0056b3;
}
</pre></body></html>