.conditional-field{
    display: none;
}


.header {
    background-color: rgba(3, 152, 158, 0.46); /* Couleur de fond de l'en-tête */
    padding: 15px 0;
}

.header .logo {
    max-width: 175px; /* Ajustez la taille du logo */
    height: auto;
    background-color: white;
    border-radius: 25px;
}
@media (max-width: 800px) {
    .header .logo {
        max-width: 100px;
    }
}


.header h1 {
    margin: 0;
    /* Ajoutez d'autres styles pour le titre si nécessaire */
}
body {
    font-family: 'Heebo', sans-serif;
}
.text-pre-line{
    white-space: pre-line;
}


footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.footer-section {
    margin-bottom: 10px;
}

.visuals-th{
    position: sticky;
    top: 0;
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#table-links th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table-signature{
    max-width: 150px;
    height: auto;
}

.table-responsive{
    max-height: 70vh;
}
.table-responsive thead th {
    position: sticky;
    top: 0;
}

.grow-click {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.8s ease;
    max-height: 20px; /* Hauteur initiale à ajuster selon vos besoins */
    max-width: 10vw; /* Hauteur initiale à ajuster selon vos besoins */
    cursor: pointer;
}

.grow-click.clicked {
    white-space: normal;
    max-height: 100%; /* La hauteur maximale en hover */
    max-width: 100%; /* La hauteur maximale en hover */
}

.footer-section ul,
.footer-section p {
    list-style: none;
    padding: 0;
}

#navbar-admin .logo{
    width: 25px;
    height: auto;
}
#navbar-admin{
    background-color: rgba(3, 152, 158, 0.46);
}

.quest-link-raw{
    cursor: pointer;
}

.quest-link{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: inline-block;
    max-width: 15rem;
    min-width: 5rem;
}
.tooltip-custom{
    display: none;
    position: absolute; /* Positionnement par rapport à son parent */
    z-index: 1000; /* Assurez-vous qu'il apparaît au-dessus des autres éléments */
    background-color: black; /* Couleur d'arrière-plan */
    color: white; /* Couleur du texte */
    text-align: center;
    border-radius: 4px; /* Bordures arrondies */
    padding: 5px 10px; /* Remplissage interne */
    font-size: 0.875rem; /* Taille de la police */
    line-height: 1.4;
    opacity: 0.9; /* Rendre le tooltip légèrement transparent */
    margin-top: 5px;
}
.modal #qrCodeImage{
    display: none;
    width: 80%;
}
.required-asterisk {
    color: red;
}
.required-text {
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
}

.input-group input.w-auto{
    max-width: 12rem;
    text-align: end;
}
#dateFin{
    max-width: 13rem;
}

.checkbox-danger:checked{
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity,1)) !important;
    border-color: rgba(var(--bs-danger-rgb),0.6) !important;
}
.checkbox-warning:checked{
    background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity,1)) !important;
    border-color: rgba(var(--bs-warning-rgb),0.6) !important;
}
.checkbox-success:checked{
    background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity,1)) !important;
    border-color: rgba(var(--bs-success-rgb),0.6) !important;
}
.visual-table tbody tr td div.overflow{
    max-height: 6rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-separator{
    border-top: 2px solid #bbb;
    padding-left: 5%;
    right: 5%;
}
.list-docs li{
    list-style: square;
    line-height: 2rem;
}
.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #121111;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation2 1s linear infinite;
}

@keyframes rotation2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}