body {
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    margin: 0;
    padding: 20px;
}

.temoignage, .temoignages-publics {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

button, .btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #111;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

button:hover, .btn:hover {
    background: #333;
}

.success {
    color: green;
    text-align: center;
    font-weight: bold;
}

.error {
    color: red;
    text-align: center;
}

/* Étoiles formulaire */
.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: #f5b301;
}

/* Témoignages publics */
.temoignage-card {
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.temoignage-card:first-child {
    border-top: none;
}

.temoignage-card .nom {
    font-weight: bold;
    color: #111;
}

.temoignage-card .note {
    color: #f5b301;
    margin: 5px 0;
}

.temoignage-card .message {
    color: #555;
    font-size: 14px;
}

.moyenne {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
