body {
    font-size: 0.9rem;
}
h1 {
    font-size: 1.8rem;
}
a {
    text-decoration: none;
}
.signin {
    width: 50%;
}
.loader {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1500;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
.informationsDossier {
    margin-left: 10px;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modalPage {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: 90%;
    overflow-y: scroll;
}
.overlayPage {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border-bottom: 1px solid #eeeeee;
}
.ligne:hover {
    background-color: #f2f2f2;
}
/*.ligne:nth-of-type(2n+1) {*/
/*    background-color: #f2f2f2;*/
/*}*/
.ligne.selected {
    /*background-color: #e0e0e0; !* Couleur de fond pour indiquer la sélection *!*/
    /*background-color: #333333;*/
    /*border: 1px solid #000;*/
    /*color: #ffffff;*/
}
.entete {
    font-weight: bold;
    background-color: white !important;
}
.flex6 {
    flex: 6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex6 > div {
    flex: 1;
}
.flex3 {
    flex: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex3 > div {
    flex: 1;
}
.flex4 {
    flex: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex4 > div {
    flex: 1;
}
.flex4 > div:first-child {
    flex: 3;
}
.flex1 {
    flex: 1;
}
.labelSm {
    display: none;
}
.labelXl {
    display: inline;
}

.dossier_separator {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.2rem;
}
.wrapperBreadcrumb {
    justify-content: space-between;
    align-items: baseline;
}
.breadcrumb {
    font-size: large;
    color: #555555;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.breadcrumb a {
    color: #555555;
    font-weight: bold;
}
.dossierLink {
    color: #555555;
}
.documentMove {
    cursor: move;
}

.invisible-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
}

.btnNewDossier {
    padding: 5px 10px;
    border: none;
    background-color: #0000ff;
    color: white !important;
    cursor: pointer;
    border-radius: 50px;
    margin-left: 30px;
}
.actions-dossier a, .actions-dossier button {
    padding: 0 10px;
}

#document_save {
    background-color: #0000ff;
}

.dossier-parent {
    cursor: pointer;
    /*font-weight: bold;*/
    margin-bottom: 5px;
}

.dossier-parent:hover {
    color: blue;
}
.dossier-parent.selected {
    /*background-color: lightblue; !* Couleur de fond pour l'élément sélectionné *!*/
    color: darkblue;
    font-weight: bold;
    font-size: large;
}
.enfants-liste {
    transition: all 0.3s ease;
}

.disabled-dossier {
    color: #aaaaaa;
    cursor: not-allowed;
}

.bg-cloud {
    background-color: #0000ff !important;
}
.innerSearch {
    display: flex;
    width: 100%;
    background-color: #c7c7e5;
    padding: 5px;
    border: 1px solid #00f;
}
.titleUpload {
    font-weight: bold;
    font-size: large;
}
/*.firstcolumn {*/
/*    white-space: nowrap;*/
/*}*/

/*.colonne {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 10px;*/
/*}*/

@media (max-width: 1200px) {
    body {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .actions {
        flex-direction: column;
    }
    .actions-dossier a, .actions-dossier button {
        padding: 0 3px;
    }
    .entete {
        display: none;
    }
    .firstcolumn {
        flex-direction: column;
        align-items: flex-start;
    }
    .labelSm {
        display: inline;
        font-weight: bold;
    }
    .labelXl {
        display: none;
    }
    .breadcrumb {
        flex-direction: column;
        align-items: flex-start;
    }
    .btnNewDossier {
        margin-left: 0;
        margin-top: 20px;
    }
}
