.form-item, .block:not(.exclude-styles), .views-row {
    border-radius: 7px; /* Des angles doux mais pas bulle */
    padding: 12px;
    margin: 8px 0 16px;
    border: 1px solid #c9d1e0; /* Une bordure bleutée bien visible pour structurer */
    background-color: #ffffff; /* Fond blanc pur pour les blocs */
    box-shadow: none; /* AUCUNE ombre */
}
  
.form-item:hover, .block:not(.exclude-styles):hover, .views-row:hover {
    border-color: #316bce; /* Au survol, la bordure devient bleue foncée */
    box-shadow: none; 
}

button[type="submit"],
input[type="submit"] {
    background-color: #316bce;
    border: none; 
    color: white; 
    padding: 8px 16px;
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 500;
    transition: background-color 0.2s ease; 
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: #2a3475; /* Un bleu encore plus foncé au survol, sans changement de taille */
}