:root {
    --primary-color: #6a1b9a; /* Violet doux */
    --secondary-color: #ffcdd2; /* Rose pâle */
    --background-color: #f5f5f5; /* Gris très clair */
    --text-color: #333333; /* Noir doux */
    --sidebar-width: 250px;
    --header-height: 80px;
    --blue-color: #2196f3; /* Bleu */
    --orange-color: #ff9800; /* Jaune orangé */
    --red-color: #d32f2f; /* Rouge sombre */
    --green-color: #388e3c; /* Vert */
    --light-violet: #e8eaf6; /* Violet léger pour le survol */
}

h2 {
    font-size: 18px; /* Taille de police réduite */
    font-weight: normal; /* Moins de gras */
    margin: 0;
    color: var(--primary-color);
    margin-top:40px 0;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

.header {
    background-color: white;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {

    max-width: 150px;
}

.header-title {
    text-align: left;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: normal;
    flex-grow: 1;
    padding-left: 100px;
    text-transform: uppercase;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: bold;
}

.logout-button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    width: var(--sidebar-width);
    background-color: white;
    height: calc(100vh - var(--header-height));
    position: fixed;
    top: var(--header-height);
    left: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: 40px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-content {
    flex: 1;
}

.sidebar-divider {
    margin: 20px auto;
    width: 80%;
    border: 0;
    height: 1px;
    background-color: #ddd;
}

.sidebar-footer {
    padding: 20px 0;
    margin-bottom: 40px;
}

.sidebar-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
}

.sidebar-item i {
    margin-right: 15px;
    color: var(--primary-color);
}

.sidebar-item.active {
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
}

.sidebar-content .sidebar-item:nth-child(2) {
    background-color: var(--orange-color) !important;
    color: white !important;
}

.sidebar-content .sidebar-item:nth-child(2) i {
    color: white !important;
}

.main-content {
    margin-left: var(--sidebar-width);
    padding: 40px 20px;
}

/* Conteneur pour la recherche et le filtre */
.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 40px 0 40px 0;
}

/* Ajustement de la largeur des éléments */
.search-container {
    display: flex;
    align-items: center;
    width: 60%;
}

.filiale-filter {
    display: flex;
    align-items: center;
    width: 35%;

}

.filiale-filter form {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filiale-filter select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.search-icon {
    margin-right: 10px;
    color: var(--primary-color);
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.dashboard-title {
    margin-top: 0;
    color: var(--primary-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
}

thead tr {
    border-bottom: 2px solid var(--primary-color); /* Ligne violette sous la première ligne */
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Ligne horizontale uniquement */
    border-left: none;
    border-right: none;
}

th {
    background-color: white;
    color: var(--primary-color);
    font-weight: normal;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: var(--light-violet); /* Violet léger pour le survol */
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--orange-color);
}

.button {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

table .button {
    padding: 8px 15px;
    margin: 0;
}

.button:hover {
    background-color: #7b1fa2;
    color: var(--orange-color);
}

.button-secondary {
    background-color: var(--blue-color);
    color: white;
}

.button-secondary:hover {
    background-color: var(--orange-color);
    color: white;
}

.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-card {
    flex: 1 1 200px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-card h3 {
    margin-top: 0;
    font-weight: normal;
}

.dashboard-card p {
    font-size: 32px; /* Plus grand */
    font-weight: bold; /* Plus gras pour mieux voir */
    margin-bottom: 0;
    color: white; /* Blanc */
}

.dashboard-card i {
    font-size: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.2;
}

#card1 {
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
}

#card2 {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
}

#card3 {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

/* Style pour les chiffres dans les tableaux */
.number-low {
    color: var(--green-color);
    font-weight: 200;
}

.number-medium {
    color: var(--orange-color);
    font-weight: 200;
}

.number-high {
    color: var(--red-color);
    font-weight: 200;
}

/* Style pour les titres des tableaux */
.table-title {
    display: flex;
    align-items: center;
    margin: 60px 0 20px 0;
    font-weight: normal;
    color: var(--primary-color);
}

.table-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.table-title h2 {
    font-size: 18px; /* Taille de police réduite */
    font-weight: normal; /* Moins de gras */
    margin: 0;
}

/* Centrer le contenu des cellules sauf la première colonne */
td:not(:first-child), th:not(:first-child) {
    text-align: center;
}

/* Couleurs pour les statuts */
.status-draft {
    color: var(--blue-color);
}

.status-submitted {
    color: var(--orange-color);
}

.status-validated {
    color: var(--primary-color);
}

.status-published {
    color: var(--green-color);
}


/* Styles pour les formulaires */
.form-container {
    padding: 20px;
    margin: 20px 0 20px 0;
}

.request-form {
    max-width: 800px;
    margin: 0;
}

.request-form label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-textarea {
    height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.form-actions .button {
    padding: 10px 20px;
    font-size: 14px;
}

.back-button {
    margin-top: 30px;
    text-align: center;
}

.back-button .button {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.back-button .button:hover {
    background-color: #ff8a9a;
}

/* Ajout pour les messages de statut */
.status-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.status-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--green-color);
}

.status-error {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--red-color);
}

/* Ajouts pour la page de suivi des entretiens */
.request-details {
    padding: 20px;
    margin: 20px 0 20px 0;
}

.detail-item {
    max-width: 800px;
    margin: 20px 0;
}

.detail-label {
    font-weight: bold;
}

.status-dropdown {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    min-width: 120px;
}

.status-form {
    display: inline;
}

/* Styles spécifiques pour les tables de cette page */
.table-container table th {
    background-color: var(--background-color);
}

.table-container table tr:nth-child(even) {
    background-color: rgba(232, 234, 246, 0.3); /* Violet très léger */
}

/* Pour les statuts des candidats */
.status-entretien {
    color: var(--orange-color);
    font-weight: bold;
}

.status-refuse {
    color: var(--red-color);
    font-weight: bold;
}

.status-accepte {
    color: var(--green-color);
    font-weight: bold;
}

/* Candidate détails */


    .candidate-details {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin: 20px 0 20px;
    }

    .detail-row {
        display: flex;
        gap: 30px;
        margin-bottom: 15px;
    }

    .detail-row .detail-item {
        flex: 1;
    }

    .detail-item {
        margin-bottom: 15px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .download-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .download-link:hover {
        color: var(--orange-color);
    }

    .comment-section {
        margin-bottom: 30px;
        display: inline-flex;
        align-items: top;

    }

    .comment-card {
        background-color: #f9f9f9;
        border-left: 4px solid var(--primary-color);
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 0 4px 4px 0;
    }

    .immutable-comment {
        background-color: #f5f5f5;
        border-left: 4px solid #cccccc;
        padding: 15px;
        margin: 10px;
        border-radius: 0 4px 4px 0;
        width: 30%;
    }

    .comment-form {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .no-comments {
        background-color: #f9f9f9;
        padding: 15px;
        text-align: center;
        color: #666;
        border-radius: 4px;
    }

    .form-actions {
        margin-top: 25px;
        display: flex;
        gap: 15px;
    }


/* style pour validate request */
   .request-info {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .validation-form {
        width: 100%;
    }

    .field-group {
        margin-bottom: 20px;
    }

    .field-label {
        font-weight: bold;
        color: var(--primary-color);
        display: block;
        margin-bottom: 5px;
    }

    .field-value {
        background-color: #f9f9f9;
        padding: 10px 15px;
        border-radius: 4px;
        border: 1px solid #e0e0e0;
    }

    .field-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .field-row .field-group {
        flex: 1;
        margin-bottom: 0;
    }

    .contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border-radius: 4px;
        text-decoration: none;
        margin: 20px 0;
        transition: all 0.3s;
    }

    .contact-link:hover {
        background-color: rgba(255, 205, 210, 0.7);
        color: var(--primary-color);
    }

    .validation-buttons {
        display: flex;
        gap: 15px;
    }

    .validation-buttons .button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .back-link {
        margin-top: 30px;
        text-align: center;
    }

    .back-link .button {
        padding: 12px 24px;
    }



/* style pour publish offer */
    .publish-offer-form {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .publish-offer-form .form-row {
        margin-bottom: 20px;
    }

    .publish-offer-form label {
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .offer-info {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        border-left: 4px solid var(--primary-color);
    }

    .offer-info h3 {
        margin-top: 0;
        color: var(--primary-color);
    }

    .form-actions {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .publish-button .button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .publish-button .button i {
        margin-right: 8px;
        vertical-align: middle;
    }

    /* Styles spécifiques pour TinyMCE */
    .tox-tinymce {
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
        margin-top: 10px;
    }

    .tox-editor-header {
        background-color: #f8f9fa !important;
        border-bottom: 1px solid #ddd !important;
    }

    .tox-statusbar {
        background-color: #f8f9fa !important;
        border-top: 1px solid #ddd !important;
    }

    .tox-tinymce-aux {
        z-index: 10000 !important;
    }

    .back-link {
        margin-top: 30px;
        display: block;
    }

/* Style view application */
    .candidate-details {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .detail-row {
        display: flex;
        gap: 30px;
        margin-bottom: 15px;
    }

    .detail-row .detail-item {
        flex: 1;
    }

    .detail-item {
        margin-bottom: 15px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .download-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .download-link:hover {
        color: var(--orange-color);
    }

    .attachments-section {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .comment-form {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .form-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .form-input, .form-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .form-textarea {
        width: 100%;
        height: 100px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        resize: vertical;
    }

    .form-actions {
        margin-top: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .form-actions .button {
        padding: 12px 24px;
    }

    .status-message {
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .status-success {
        background-color: rgba(76, 175, 80, 0.1);
        color: var(--green-color);
    }


/* style view responses */

    .offer-details {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .detail-item {
        margin-bottom: 10px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .table-container {
        margin-top: 20px;
        overflow-x: auto;
    }

    .table-container table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: white;
    }

    .table-container th, .table-container td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .table-container th {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        font-weight: normal;
    }

    .table-container tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table-container tr:hover {
        background-color: var(--light-violet);
    }

    .action-buttons {
        margin-top: 30px;
        text-align: center;
    }

    .action-buttons .button {
        padding: 12px 24px;
    }

    .action-buttons .button i {
        margin-right: 8px;
        vertical-align: middle;
    }

/* style Organize interviews */

    .offer-details {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .detail-item {
        margin-bottom: 10px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .table-container {
        margin-top: 20px;
        overflow-x: auto;
    }

    .table-container table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: white;
    }

    .table-container th, .table-container td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .table-container th {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        font-weight: normal;
    }

    .table-container tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table-container tr:hover {
        background-color: var(--light-violet);
    }

    .form-container {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .slot-form {
        width: 100%;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .form-input, .form-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .form-actions {
        margin-top: 20px;
        display: flex;
        gap: 15px;
    }

    .form-actions .button {
        padding: 12px 24px;
    }

    .action-buttons {
        margin-top: 30px;
        text-align: center;
    }

    .action-buttons .button {
        padding: 12px 24px;
    }

    .action-buttons .button i {
        margin-right: 8px;
        vertical-align: middle;
    }

    .button i {
        margin-right: 8px;
        vertical-align: middle;
    }

/* style public_interviews */
    .offer-details {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .detail-item {
        margin-bottom: 10px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .form-container {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .preferences-form {
        width: 100%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .form-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .form-checkbox {
        margin: 0;
    }

    .form-actions {
        margin-top: 20px;
        display: flex;
        gap: 15px;
    }

    .form-actions .button {
        padding: 12px 24px;
    }

    .table-container {
        margin-top: 20px;
        overflow-x: auto;
    }

    .table-container table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: white;
    }

    .table-container th, .table-container td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .table-container th {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        font-weight: normal;
    }

    .table-container tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table-container tr:hover {
        background-color: var(--light-violet);
    }

    .status-message {
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .status-success {
        background-color: rgba(76, 175, 80, 0.1);
        color: var(--green-color);
    }

    .status-error {
        background-color: rgba(211, 47, 47, 0.1);
        color: var(--red-color);
    }


    /* style preparation onboarding */
       .application-details {
        background-color: white;
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .detail-row {
        display: flex;
        gap: 30px;
        margin-bottom: 15px;
    }

    .detail-row .detail-item {
        flex: 1;
    }

    .detail-item {
        margin-bottom: 15px;
    }

    .detail-label {
        display: block;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .detail-value {
        display: block;
    }

    .documents-section, .uploads-section, .contacts-section {
        background-color: var(--background-color);
        padding: 25px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .documents-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .form-container {
        margin-top: 20px;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--primary-color);
    }

    .form-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

    .form-checkbox-group {
        margin-bottom: 10px;
    }

    .form-checkbox-group input[type="checkbox"] {
        margin-right: 10px;
    }

    .form-actions {
        margin-top: 20px;
        display: flex;
        gap: 15px;
    }

    .form-actions .button {
        padding: 12px 24px;
    }

    .upload-list, .contact-list {
        list-style-type: none;
        padding: 0;
    }

    .upload-list li, .contact-list li {
        padding: 10px;
        margin-bottom: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }

    .upload-link {
        display: flex;
        align-items: center;
        color: var(--primary-color);
        text-decoration: none;
    }

    .upload-link i {
        margin-right: 8px;
    }

    .contact-name {
        font-weight: bold;
        display: block;
    }

    .contact-email {
        color: var(--primary-color);
        display: block;
    }

    .contact-function {
        font-style: italic;
        color: #666;
        display: block;
    }

    .button i {
        margin-right: 8px;
        vertical-align: middle;
    }   


/* Styles pour la page de connexion */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--background-color);
    padding: 20px;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
}

.login-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.form-actions .button {
    padding: 12px 24px;
    font-size: 16px;
}

.form-actions .button i {
    margin-right: 8px;
    vertical-align: middle;
}

.error-message {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--red-color);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.error-message i {
    margin-right: 8px;
}
