/* نظام الألوان والتصميم الأساسي لشركة Diamond Gate */
:root {
    --bg-primary: #070d19;
    --bg-secondary: #0d1627;
    --accent-emerald: #0ea5e9; /* لون سماوي ماسي فاخر */
    --accent-emerald-hover: #38bdf8;
    --accent-gold: #c29b38; /* ذهبي فاخر */
    --accent-gold-hover: #d4af37;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(13, 22, 39, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Tajawal', sans-serif;
}

/* التصفير العام */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* الخلفيات الفنية المتوهجة */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--accent-gold);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background-color: var(--accent-emerald);
}

/* حاوية التطبيق */
.app-container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ترويسة التطبيق */
.app-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.logo-circle {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.4));
}

.logo-text {
    text-align: right;
}

.logo-text h1 {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 4px;
}

/* حاوية المحتوى الزجاجية الفاخرة */
.main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

/* الشاشات والمؤثرات الانتقالية */
.screen {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.screen.active {
    opacity: 1;
    transform: translateY(0);
}

/* ترحيب وشرح الاختبار */
.welcome-intro {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.welcome-intro h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.welcome-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* عناوين الأقسام داخل طلب التوظيف */
.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-emerald);
    border-right: 4px solid var(--accent-emerald);
    padding-right: 12px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

.experience-sub-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 1.5rem 0 1rem 0;
}

/* تصميم شبكة حقول النموذج */
.applicant-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.span-2 {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(194, 155, 56, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

/* كتل الخبرات السابقة */
.jobs-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.job-block {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.job-block h4 {
    color: var(--accent-emerald);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

/* نظام تقييم النجوم/الأرقام */
.skills-rating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.rating-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 10px;
}

.rating-group:last-child {
    border-bottom: none;
}

.rating-group label {
    font-size: 0.95rem;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 6px;
}

.rating-stars span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.rating-stars span:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(194, 155, 56, 0.05);
}

.rating-stars span.selected {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 10px rgba(194, 155, 56, 0.3);
}

/* الأزرار */
.primary-btn {
    background-color: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(194, 155, 56, 0.2);
}

.primary-btn:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 155, 56, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition-smooth);
}

.secondary-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.secondary-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* شاشة الاختبار والمؤقت وشريط التقدم */
.quiz-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quiz-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timer-display {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-bar-bg {
    flex: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 90px;
    text-align: left;
}

/* حاوية الأسئلة */
.question-container {
    min-height: 250px;
    transition: opacity 0.25s ease;
}

.question-container.fade-out {
    opacity: 0;
}

.question-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* خيارات الاختيار من متعدد */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-gold);
    transform: translateX(-5px);
}

.option-card.selected {
    background-color: rgba(194, 155, 56, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(194, 155, 56, 0.12);
}

.option-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.option-card:hover .option-indicator {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.option-card.selected .option-indicator {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

.option-text {
    font-size: 1.05rem;
    font-weight: 500;
}

/* منطقة إدخال الإجابة المخصصة */
.custom-answer-wrapper {
    width: 100%;
}

.custom-answer-textarea {
    width: 100%;
    min-height: 180px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1.05rem;
    line-height: 1.6;
    outline: none;
    resize: vertical;
    transition: var(--transition-smooth);
}

.custom-answer-textarea:focus {
    border-color: var(--accent-emerald);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}

/* أزرار التنقل بالاختبار */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.finish-btn {
    background-color: var(--accent-emerald);
    color: #000;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.finish-btn:hover {
    background-color: var(--accent-emerald-hover);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

/* شاشة النتيجة والتأكيد */
.success-illustration {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

#result-screen h2 {
    text-align: center;
    font-size: 1.9rem;
    color: var(--accent-emerald);
    margin-bottom: 1rem;
}

#result-screen > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.applicant-summary {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 2.5rem;
}

.applicant-summary h3 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    color: var(--accent-gold);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 6px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: var(--text-muted);
}

.result-actions {
    display: flex;
    justify-content: center;
}

/* لوحة الإدارة لمراجعة التقييم الفني للمسؤولين */
.admin-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px dashed var(--border-color);
}

.admin-section h3 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.admin-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.admin-subsection-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-emerald);
    margin: 1.5rem 0 1rem 0;
    border-right: 3px solid var(--accent-emerald);
    padding-right: 8px;
}

.admin-sub-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 1.2rem 0 0.8rem 0;
}

.admin-info-section {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.admin-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.admin-info-grid div {
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 6px;
}

.admin-info-grid div strong {
    color: var(--text-muted);
}

.admin-experience-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.exp-block {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.admin-ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.admin-ratings-grid div {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.admin-ratings-grid div strong {
    display: block;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.answers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-answer-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.admin-question-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.admin-options-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 0;
}

.admin-options-list li {
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.01);
    font-size: 0.95rem;
}

.admin-options-list li.correct-opt {
    border: 1px solid rgba(14, 165, 233, 0.4);
    background-color: rgba(14, 165, 233, 0.1);
    color: #38bdf8;
}

.admin-options-list li.selected-opt.wrong-opt {
    border: 1px solid rgba(239, 68, 68, 0.4);
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.admin-options-list li.selected-opt.correct-opt {
    border: 1px solid var(--accent-emerald);
    background-color: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
    font-weight: 700;
}

.admin-text-answer {
    background-color: rgba(255, 255, 255, 0.02);
    border-right: 4px solid var(--accent-emerald);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
}

.admin-text-answer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.admin-text-answer p {
    font-size: 1rem;
    color: var(--text-main);
    white-space: pre-wrap;
}

.admin-text-answer .no-answer {
    color: #ef4444;
    font-style: italic;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* تذييل التطبيق */
.app-footer {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3.5rem;
}

/* التجاوب مع مختلف الشاشات */
@media (max-width: 768px) {
    .main-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-grid, .jobs-row, .skills-rating-grid, .admin-info-grid, .admin-experience-blocks {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .admin-ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .question-title {
        font-size: 1.2rem;
    }

    .quiz-navigation {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .quiz-navigation button {
        width: 100%;
    }

    .admin-actions {
        flex-direction: column;
    }

    .admin-actions button {
        width: 100%;
    }
}

/* إعدادات الطباعة للتقارير */
@media print {
    body {
        background-color: #fff !important;
        color: #000 !important;
    }

    .background-decor,
    .app-header,
    .app-footer,
    .welcome-intro,
    .applicant-form,
    .quiz-navigation,
    #welcome-screen,
    #quiz-screen,
    .result-actions,
    .admin-note,
    .admin-actions {
        display: none !important;
    }

    .main-card {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #result-screen {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .success-illustration {
        display: none !important;
    }

    #result-screen h2 {
        color: #000 !important;
        text-align: right !important;
        margin-bottom: 20px !important;
    }

    .applicant-summary {
        border: 1px solid #ccc !important;
        background-color: #f9f9f9 !important;
        color: #000 !important;
        page-break-inside: avoid;
    }

    .summary-item strong {
        color: #333 !important;
    }

    .admin-section {
        display: block !important;
        border-top: 2px solid #000 !important;
        margin-top: 30px !important;
        padding-top: 20px !important;
    }

    .admin-info-section {
        border: 1px solid #ccc !important;
        background-color: #fff !important;
        color: #000 !important;
    }

    .admin-info-grid div {
        border-bottom: 1px solid #eee !important;
    }

    .admin-info-grid div strong {
        color: #333 !important;
    }

    .exp-block {
        border: 1px solid #ccc !important;
        background-color: #fff !important;
        color: #000 !important;
    }

    .admin-ratings-grid div {
        border: 1px solid #ccc !important;
        background-color: #fff !important;
        color: #000 !important;
    }

    .admin-ratings-grid div strong {
        color: #333 !important;
    }

    .admin-answer-card {
        border: 1px solid #ddd !important;
        background-color: #fff !important;
        color: #000 !important;
        page-break-inside: avoid;
    }

    .admin-options-list li {
        background-color: #f5f5f5 !important;
        border: 1px solid #eee !important;
        color: #333 !important;
    }

    .admin-options-list li.correct-opt {
        background-color: #e6f4ea !important;
        border: 1px solid #34a853 !important;
        color: #137333 !important;
        font-weight: bold !important;
    }

    .admin-options-list li.selected-opt.wrong-opt {
        background-color: #fce8e6 !important;
        border: 1px solid #ea4335 !important;
        color: #c5221f !important;
    }

    .admin-text-answer {
        border-right: 4px solid #34a853 !important;
        background-color: #f9f9f9 !important;
    }
}

/* تنسيق خيارات القوائم المنسدلة */
.form-group select option {
    background-color: var(--bg-secondary) !important;
    color: var(--text-main) !important;
}

/* متغيرات الثيم الفاتح */
body.light-theme {
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.05);
    --shadow-premium: 0 20px 40px rgba(15, 23, 42, 0.06);
}

body.light-theme .background-decor .glow-orb {
    opacity: 0.06;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .job-block,
body.light-theme .skills-rating-grid,
body.light-theme .rating-stars span,
body.light-theme .timer-display,
body.light-theme .custom-answer-textarea,
body.light-theme .option-card,
body.light-theme .option-indicator,
body.light-theme .applicant-summary,
body.light-theme .admin-info-section,
body.light-theme .admin-answer-card,
body.light-theme .admin-options-list li,
body.light-theme .admin-text-answer,
body.light-theme .filter-input,
body.light-theme .filter-select,
body.light-theme .applicants-table th,
body.light-theme .table-btn {
    background-color: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .custom-answer-textarea:focus {
    background-color: #ffffff;
}

body.light-theme .option-card:hover {
    background-color: #f1f5f9;
}

body.light-theme .option-card.selected {
    background-color: rgba(194, 155, 56, 0.12);
}

body.light-theme .option-card.selected .option-indicator {
    background-color: var(--accent-gold);
    color: #fff;
}

body.light-theme .rating-stars span.selected {
    background-color: var(--accent-gold);
    color: #fff;
}

