
.formulaire {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.champ {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
}


button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
.liste-avis {
    margin-bottom: 30 px;
}
.avis {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.avis-entete {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.avis-nom {
    font-weight: bold;
    font-size: 1.1em;
}
.avis-note {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}
.avis-date {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}
.erreur {
    color: #d9534f;
    font-size: 0.9em;
    margin-top: 5px;
}
.notification {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    position: relative;
}
.notification.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.notification.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
.chargement {
    display: flex;
    justify-content: center;
    padding: 20px;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.notification .fermer {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-weight: bold;
}
#avis-vides {
    color: #666;
    font-style: italic;
    margin-bottom: 8vh;
}
h3 {
    margin-bottom: 3vh;
}