/* Formulier container */
.universal-review-form-wrapper {
    display: flex;
    justify-content: center; /* centreert het hele formulier horizontaal */
    margin-bottom: 30px;
}

/* Formulier zelf */
.universal-review-form {
    width: 80%;
    max-width: 800px;
    min-width: 300px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Titel in het midden */
.universal-review-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

/* Labels links */
.universal-review-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Velden volledig breed */
.universal-review-form input,
.universal-review-form select,
.universal-review-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95em;
}

/* Knop centreren */
.universal-review-form button {
    display: block;
    margin: 0 auto; /* centreert de knop */
    background: #1d3557;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.universal-review-form button:hover {
    background: #457b9d;
}

/* Bedankbericht */
.review-thankyou {
    padding:10px;
    background:#d4edda;
    color:#155724;
    margin-bottom:20px;
    border-radius:5px;
    font-weight: bold;
    text-align: center;
}

/* Mobielvriendelijk */
@media (max-width: 480px) {
    .universal-review-form {
        width: 95%;
        padding: 15px;
    }

    .universal-review-form button {
        width: 100%;
    }
}

/* Tour review summary boven de titel */
.tour-review-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0 20px 0;
    padding: 8px 12px;
    background: #f3e5f5; /* licht paars achtergrondje */
    border-left: 5px solid #6a1b9a; /* paarse accentlijn */
    border-radius: 8px;
    font-size: 0.95em; /* iets kleiner */
    font-family: Arial, sans-serif;
    color: #6a1b9a; /* paars voor tekst */
    flex-wrap: wrap;
}

/* Sterren */
.tour-review-summary .stars {
    color: #6a1b9a; /* paarse sterren */
    font-size: 1.1em; /* iets kleiner */
}

/* Tekst Recommended / aantal reviews */
.tour-review-summary .avg,
.tour-review-summary .count {
    font-weight: normal;
    font-size: 0.9em;
    color: #6a1b9a; /* paars */
}
