/* Extracted from feedbacks.html */

/* Star Rating CSS */
    .star-rating label:hover,
    .star-rating label:hover~label,
    .star-rating input[type="radio"]:checked~label {
        color: #fbbf24 !important;
    }

    /* Technician Selection CSS */
    .technician-card input:checked+.tech-card-inner {
        border-color: var(--accent-primary);
        background: rgba(37, 99, 235, 0.05);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    }

    .technician-card:hover .tech-card-inner {
        transform: translateY(-5px);
    }

