/* Style global du formulaire */
form.edit-demande-form {
    max-width: 700px;
    padding: 2rem;
    background: #4daca424;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Chaque champ */
form.edit-demande-form p {
    margin-bottom: 1.5rem;
}

/* Labels */
form.edit-demande-form label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #222;
}

/* Inputs + textarea */
form.edit-demande-form input[type="text"],
form.edit-demande-form input[type="email"],
form.edit-demande-form input[type="date"],
form.edit-demande-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus */
form.edit-demande-form input:focus,
form.edit-demande-form textarea:focus {
    border-color: #2271b1; /* bleu WP */
    box-shadow: 0 0 0 3px rgba(34,113,177,0.2);
    outline: none;
}

/* Champ en lecture seule */
form.edit-demande-form input[readonly] {
    background-color: #f9f9f9;
    color: #666;
    cursor: not-allowed;
}

/* Bouton submit */
form.edit-demande-form input[type="submit"] {
    background: #2271b1;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

form.edit-demande-form input[type="submit"]:hover {
    background: #1a5a8f;
}
