#vacancyForm {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Style du conteneur du formulaire */
.itemForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .itemForm {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Style des sections du formulaire */
.form-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .form-section {
        width: 45%;
    }
}

/* Style des groupes de champs */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

/* Style des labels */
.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

/* Style des champs de saisie */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Style du bouton de soumission */
.form-group input[type="submit"] {
    background-color: white;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid;
}

.form-group input[type="submit"]:hover {
    background-color: #ebebeb;
}

.passwd_reset_container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.login_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login_form div {
    width: 100%;
}

.login_form input {
    width: 100%;
}

.login_form .login_form_pass {
    width: 100%;
}

@media screen and (max-width:768px) {
    .login_form div {
        width: 85%;
    }

    .table-list-employees {
        display: block;
        overflow-x: scroll;
    }

    .fc .fc-toolbar-title {
        font-size: 1.5em;
    }
}

table.fc-col-header {
    margin-bottom: 0;
}

table.fc-scrollgrid-sync-table {
    margin-bottom: 0;
}

.vacancy-notification {
    background-color: #d4edda;
    /* Couleur de fond vert clair */
    color: #155724;
    /* Texte vert foncé */
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    /* Bordure verte */
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fc-direction-ltr .fc-daygrid-event.fc-event-start {
    margin-left: 0 !important;
}

button.tab-link {
    color: #00102E;
}

#passwordResetRequestForm input[type="submit"] {
    color: black;
    margin-top: 15px;
}

#passwordResetForm p {
    text-align: center;
}

.tab-buttons {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    display: flex;
}