.eval-form-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    font-family: inherit;
}
.eval-form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.eval-form-header h1 {
    color: #1a3c6e;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}
.eval-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.eval-intro {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}
.eval-question {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.eval-question-label {
    display: block;
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.eval-q-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #1a3c6e;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.eval-hint {
    color: #777;
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

/* Star Rating */
.eval-stars-input {
    text-align: center;
    padding: 0.5rem 0;
}
.eval-star {
    font-size: 2.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
    padding: 0 0.15rem;
}
.eval-star:hover,
.eval-star.hovered {
    color: #f5a623;
    transform: scale(1.15);
}
.eval-star.selected {
    color: #f5a623;
}
.eval-star-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
}

/* Radio Group */
.eval-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.eval-radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.eval-radio-option:hover {
    border-color: #1a3c6e;
    background: #f0f4f8;
}
.eval-radio-option input[type="radio"] {
    margin-top: 3px;
    accent-color: #1a3c6e;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.eval-radio-option input[type="radio"]:checked ~ .eval-radio-text {
    color: #1a3c6e;
}
.eval-radio-option:has(input:checked) {
    border-color: #1a3c6e;
    background: #eef2f7;
}
.eval-radio-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}
.eval-radio-perfect {
    border-color: #d4edda;
    background: #f8fff9;
}
.eval-other-input {
    margin-left: 2.5rem;
    margin-top: 0.25rem;
}
.eval-text-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.15s;
}
.eval-text-input:focus {
    outline: none;
    border-color: #1a3c6e;
}

/* Textarea */
.eval-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: border-color 0.15s;
}
.eval-textarea:focus {
    outline: none;
    border-color: #1a3c6e;
}
.eval-char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Captcha */
.eval-captcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Submit */
.eval-submit {
    text-align: center;
    margin-top: 1.5rem;
}
.eval-submit-btn {
    padding: 0.85rem 3rem;
    background: #1a3c6e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.eval-submit-btn:hover {
    background: #142e55;
}
.eval-submit-btn:active {
    transform: scale(0.98);
}
.eval-submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

/* Error */
.eval-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    .eval-form-wrapper {
        padding: 1rem 0.5rem;
    }
    .eval-question {
        padding: 1rem;
    }
    .eval-star {
        font-size: 2.2rem;
    }
    .eval-form-header h1 {
        font-size: 1.4rem;
    }
}
