
/* Conteneur du formulaire */

.pop_up {
    position: fixed;      /* ou fixed */
    width: 400px;
    left: calc((100% - 400px) / 2);
    top: 50%;
    transform: translate(0%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.pop_up.display {
    visibility: visible;
    opacity: 1;
}

.editForm {
    box-sizing: border-box;
    //visibility: hidden;
    /opacity: 0;
    /transition: all 5s ease-in-out;
    overflow: hidden;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.editForm.display {
    /visibility: visible;
    /opacity: 1;
}

/* Table */
#editForm table {
    width: 100%;
    border-collapse: collapse;
}

/* Espacement des lignes */
#editForm td {
    padding: 10px 8px;
}

/* Labels */
#editForm label.text {
    color: #6a0dad; /* violet */
    font-weight: bold;
    font-size: 15px;
}

/* Champs input */
#editForm input {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

/* Effet focus */
#editForm input:focus {
    outline: none;
    border-color: #6a0dad;
    box-shadow: 0 0 6px rgba(106, 13, 173, 0.3);
}

/* Style date cohérent */
#editForm input[type="date"] {
    color: #6a0dad;
}
