.wr-form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wr-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-align: center;
}

.wr-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 0 25px 0;
    text-align: center;
}

.wr-form-group {
    margin-bottom: 20px;
}

.wr-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.wr-input, .wr-textarea {
    width: 100%;
    background-color: #111111;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.wr-input:focus, .wr-textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.wr-textarea {
    height: 120px;
    resize: vertical;
}

.wr-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    font-size: 28px;
}

.wr-star-rating span {
    cursor: pointer;
    color: #444444;
    transition: color 0.1s ease;
}

.wr-star-rating span:hover,
.wr-star-rating span:hover ~ span,
.wr-star-rating span.active,
.wr-star-rating span.active ~ span {
    color: #FFD700;
}

.wr-submit-btn {
    width: 100%;
    color: #000000;
    font-weight: bold;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wr-submit-btn:hover {
    background-color: #ffffff !important;
    color: #000000;
}

.wr-feedback-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
}

.wr-feedback-message.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.wr-feedback-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}
