#wildmex-form {
    max-width: 720px;
    margin: 40px auto;
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 15px;
    color: #333;
}

#wildmex-form label {
    display: block;
    font-weight: 600;
    margin: 15px 0 6px;
}

#wildmex-form input[type="text"],
#wildmex-form input[type="email"],
#wildmex-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

#wildmex-form textarea {
    resize: vertical;
    min-height: 100px;
}

#wildmex-form fieldset {
    margin: 25px 0;
    border: none;
    padding: 0;
}

#wildmex-form fieldset legend {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #0073aa;
}

#wildmex-form fieldset input[type="radio"] {
    display: none;
}

#wildmex-form fieldset label {
    display: inline-block;
    margin: 6px 10px 6px 0;
    padding: 8px 14px;
    background-color: #f1f1f1;
    border-radius: 30px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

#wildmex-form fieldset input[type="radio"]:checked + label {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

#wildmex-form button[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

#wildmex-form button[type="submit"]:hover {
    background: #005f8d;
}

#wildmex-response {
    max-width: 720px;
    margin: 20px auto;
    padding: 20px;
    background: #e9f8ec;
    border: 1px solid #b6e2b6;
    border-radius: 8px;
    color: #256029;
    font-size: 16px;
}
.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: #e0e0e0;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    border: none;
    background: none;
    padding: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5b301;
    transform: scale(1.1);
}

.star-rating input[type="radio"]:checked ~ label {
    color: #f5b301;
}
