﻿:root[data-theme="dark"] {
    --primary: #f85149;
    --primary-dark: #b91c1c;
    --primary-light: #ff6b6b;
    --secondary: #8b5cf6;
    --accent: #e3b341;
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --border-color: #30363d;
    --card-bg: #21262d;
    --hover-bg: rgba(248, 81, 73, 0.1);
    --gradient-primary: linear-gradient(135deg, #f85149, #8b5cf6, #e3b341);
    --glass: rgba(33, 38, 45, 0.8);
}

:root[data-theme="light"] {
    --primary: #f85149;
    --primary-dark: #b91c1c;
    --primary-light: #ff6b6b;
    --secondary: #8b5cf6;
    --accent: #e3b341;
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #dddddd;
    --card-bg: #ffffff;
    --hover-bg: rgba(248, 81, 73, 0.05);
    --gradient-primary: linear-gradient(135deg, #f85149, #8b5cf6, #e3b341);
    --glass: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* ========== BACKGROUND ANIMATION ========== */
.background-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
}

.gradient-bg {
    position: absolute;
    width: 200%; height: 200%;
    background: var(--gradient-primary);
    animation: rotate 20s linear infinite;
    opacity: 0.05;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particles { position: absolute; width: 100%; height: 100%; }

.particle {
    position: absolute;
    background: rgba(248, 81, 73, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-40px) translateX(20px); }
    50% { transform: translateY(20px) translateX(-20px); }
    75% { transform: translateY(-20px) translateX(30px); }
}

.floating-icons {
    position: absolute; width: 100%; height: 100%;
    pointer-events: none; z-index: -1;
}

.floating-icon {
    position: absolute; font-size: 24px;
    color: var(--primary); opacity: 0.1;
    animation: floatIcon 20s infinite linear;
}

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ========== LOGIN CONTAINER ========== */
.login-container {
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.8s ease-out;
    margin-top: 120px !important;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-primary);
}

/* ========== LOGIN HEADER ========== */
.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo-circle {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: pulse 2s infinite;
}

.login-logo-circle i { font-size: 32px; color: white; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.login-header h1 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ========== FORM ========== */
.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-group { position: relative; }

.input-icon {
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 18px 52px 18px 18px;
    border: 2px solid var(--border-color);
    border-radius: 20px !important;
    background: rgba(22, 27, 34, 0.9);
    color: var(--text-primary);
    font-size: 16px;
    height: 58px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-input:hover {
    background: rgba(33, 38, 45, 0.9);
    border-color: var(--primary-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.2);
    transform: translateY(-2px);
    background: var(--card-bg);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 14px;
}

/* ========== PASSWORD TOGGLE ========== */
.password-toggle {
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    background: transparent; border: none;
    color: var(--text-secondary);
    cursor: pointer; font-size: 18px;
    padding: 8px; z-index: 2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary);
    background: rgba(248, 81, 73, 0.1);
}

#password { padding-left: 55px !important; }

/* ========== LOGIN BUTTON ========== */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #f85149, #d33f3f, #b91c1c);
    color: white; border: none;
    padding: 18px; border-radius: 16px;
    font-size: 17px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 20px rgba(248, 81, 73, 0.3);
    position: relative; overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.login-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(248, 81, 73, 0.4); }
.login-btn:hover::before { left: 100%; }
.login-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ========== LOADING SPINNER ========== */
.loading-spinner {
    width: 22px; height: 22px;
    border: 3px solid transparent;
    border-top: 3px solid white;
    border-right: 3px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== ALERTS ========== */
.alert {
    padding: 16px 20px; border-radius: 16px;
    margin-bottom: 20px; font-weight: 500; font-size: 14px;
    text-align: center; animation: slideDown 0.4s;
    border: 2px solid transparent;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-danger {
    background: rgba(248, 81, 73, 0.1);
    border-color: rgba(248, 81, 73, 0.3);
    color: #ff8fa3;
}

/* ========== LINKS ========== */
.links-container { margin-top: 25px; }

.link-row {
    display: flex; justify-content: center;
    gap: 20px; flex-wrap: wrap;
}

.forgot-link {
    display: flex; align-items: center; gap: 8px;
    color: var(--primary); text-decoration: none;
    font-weight: 500; font-size: 14px;
    padding: 8px 15px; border-radius: 12px;
    transition: all 0.3s;
}

.forgot-link:hover { color: var(--primary-light); background: var(--hover-bg); }
.forgot-link i { font-size: 16px; }

/* ========== FOOTER ========== */
.login-footer {
    text-align: center; margin-top: 25px;
    color: var(--text-secondary); font-size: 14px;
    padding: 10px; background: rgba(0,0,0,0.2);
    border-radius: 12px; backdrop-filter: blur(5px);
    direction: ltr;
}

.login-footer p {
    display: flex; align-items: center;
    justify-content: center; gap: 5px; flex-wrap: wrap;
}

.footer-link {
    color: var(--primary); text-decoration: none;
    font-weight: 600; position: relative;
    transition: all 0.3s ease; padding: 2px 5px; display: inline-block;
}

.footer-link::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.3s ease;
}

.footer-link:hover { color: var(--primary-light); }
.footer-link:hover::after { width: 100%; }

/* ========== SHAKE ========== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake { animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

/* ========== HEADER ========== */
.header {
    position: fixed; top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 1400px; height: 80px;
    background: var(--glass);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 60px; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 1000; transition: all 0.3s;
}

.header.scrolled { top: 10px; background: var(--card-bg); }

.header .logo { display: flex; align-items: center; gap: 15px; }

.header .logo-img {
    width: 40px; height: 50px; object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(248, 81, 73, 0.6));
}

.header .logo-text {
    font-size: 24px; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-menu { display: flex; align-items: center; gap: 30px; }

.nav-link {
    color: var(--text-primary); text-decoration: none;
    font-weight: 600; font-size: 16px;
    transition: color 0.3s; position: relative;
}

.nav-link::after {
    content: ''; position: absolute;
    bottom: -5px; right: 0; width: 0; height: 2px;
    background: var(--gradient-primary); transition: width 0.3s;
}

.nav-link:hover { color: var(--primary-light); }
.nav-link:hover::after { width: 100%; }

.nav-buttons { display: flex; align-items: center; gap: 15px; }

.theme-toggle {
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--hover-bg); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    color: var(--text-primary); text-decoration: none;
}

.theme-toggle:hover { transform: rotate(45deg); background: var(--primary); color: white; }

.lang-toggle {
    padding: 10px 20px; border-radius: 30px;
    background: var(--hover-bg); border: 1px solid var(--border-color);
    color: var(--text-primary); font-weight: 600;
    text-decoration: none; transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
}

.lang-toggle:hover { background: var(--primary); color: white; border-color: var(--primary); }

.btn-signup {
    padding: 12px 28px; border-radius: 30px;
    background: var(--gradient-primary); color: white;
    font-weight: 600; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(248, 81, 73, 0.3);
}

.btn-signup:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(248, 81, 73, 0.4); }

.mobile-menu-btn {
    display: none; flex-direction: column;
    gap: 6px; cursor: pointer; z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px; height: 3px;
    background: var(--text-primary);
    border-radius: 3px; transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -5px); }


/* ========================================================
   ✅ Choose Login Method — Switch Container
   ======================================================== */

.switch-container {
    margin-bottom: 22px;
    padding: 14px 16px;
    background: rgba(22, 27, 34, 0.7);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: border-color 0.25s;
}

.switch-container:focus-within {
    border-color: rgba(248, 81, 73, 0.4);
}

/* الهيدر */
.switch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

.switch-header .form-label {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.4px;
}

/* أيقونة التبديل */
#loginMethodIcon {
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px 7px;
    border-radius: 8px;
    transition: transform 0.4s ease, color 0.2s, background 0.2s;
}

#loginMethodIcon:hover {
    color: var(--primary);
    background: var(--hover-bg);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px; height: 27px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0; width: 0; height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    cursor: pointer; inset: 0;
    background: var(--border-color);
    border-radius: 34px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    width: 20px; height: 20px;
    left: 4px; bottom: 3.5px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

[dir="rtl"] .toggle-slider::before { left: auto; right: 4px; }

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #f85149, #8b5cf6);
}

input:checked + .toggle-slider::before {
    transform: translateX(25px);
}

[dir="rtl"] input:checked + .toggle-slider::before {
    transform: translateX(-25px);
}

/* Labels */
.toggle-labels {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label {
    display: flex;
    align-items: center; justify-content: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.25s;
    user-select: none;
    flex: 1;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.toggle-label i { font-size: 0.82rem; }

.toggle-label:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
    border-color: var(--border-color);
}

/* Username active → أحمر */
.toggle-label.active {
    color: var(--primary);
    background: rgba(248, 81, 73, 0.1);
    border-color: rgba(248, 81, 73, 0.3);
    font-weight: 700;
}

.toggle-label.active i { color: var(--primary); }

/* Phone active → أزرق */
#labelPhone.active {
    color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
    border-color: rgba(88, 166, 255, 0.3);
}

#labelPhone.active i { color: #58a6ff; }

/* رسالة خطأ الهاتف */
.input-error {
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(248, 81, 73, 0.08);
    border: 1px solid rgba(248, 81, 73, 0.25);
    color: #ff8fa3;
    animation: slideDown 0.3s ease;
}

.input-error i { font-size: 0.9rem; flex-shrink: 0; }

/* Light theme */
:root[data-theme="light"] .switch-container {
    background: rgba(245, 245, 245, 0.95);
}

:root[data-theme="light"] .form-input {
    background: rgba(255, 255, 255, 0.95);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header { height: 70px; padding: 0 20px; }
    .header .logo-text { font-size: 18px; }
    .header .logo-img { width: 35px; height: 45px; }

    .nav-menu {
        position: fixed; top: 90px; right: -100%;
        width: 80%; max-width: 300px;
        height: auto; max-height: 80vh;
        background: var(--card-bg); backdrop-filter: blur(10px);
        flex-direction: column; padding: 30px 20px;
        transition: right 0.3s ease;
        border: 1px solid var(--border-color);
        border-radius: 20px; gap: 15px; overflow-y: auto;
    }

    .nav-menu.active { right: 20px; }

    .nav-link {
        width: 100%; text-align: center; padding: 12px;
        border-radius: 12px; font-size: 15px;
        background: var(--hover-bg); border: 1px solid transparent;
    }

    .nav-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
    .nav-link::after { display: none; }

    .nav-buttons { flex-direction: column; width: 100%; gap: 10px; margin-top: 10px; }

    .theme-toggle, .lang-toggle, .btn-signup {
        width: 100%; justify-content: center;
        height: 45px; border-radius: 12px !important;
    }

    .mobile-menu-btn { display: flex; }
    .login-container { margin-top: 100px !important; }

    /* Switch mobile */
    .switch-container { padding: 12px 14px; margin-bottom: 18px; }
    .switch-header .form-label { font-size: 0.75rem; }
    .toggle-label { font-size: 0.72rem; padding: 5px 10px; }
    .toggle-switch { width: 46px; height: 24px; }
    .toggle-slider::before { width: 17px; height: 17px; left: 3.5px; bottom: 3.5px; }
    input:checked + .toggle-slider::before { transform: translateX(22px); }
    [dir="rtl"] input:checked + .toggle-slider::before { transform: translateX(-22px); }
}

@media (max-width: 480px) {
    .glass-card { padding: 30px 25px; }
    .login-header h1 { font-size: 28px; }
    .login-logo-circle { width: 60px; height: 60px; }
    .login-logo-circle i { font-size: 28px; }
    .form-input { padding: 15px 45px 15px 15px; font-size: 14px; }
    #password { padding-left: 50px !important; }
    .login-btn { padding: 15px; font-size: 15px; }
    .link-row { gap: 10px; }
    .forgot-link { font-size: 13px; padding: 6px 12px; }
}
/* ============================================
   إزالة الخلفيات من جميع العناصر
   ============================================ */

/* إزالة خلفية الجلاس كارد */
.glass-card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
}

/* إزالة خلفية حقل الإدخال */
.form-input {
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid var(--border-color) !important;
}

.form-input:hover,
.form-input:focus {
    background: transparent !important;
    background-color: transparent !important;
}

/* إزالة خلفية السويتش كونتينر */
.switch-container {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
}

/* إزالة خلفية الأزرار */
.login-btn {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.login-btn::before {
    display: none;
}

/* إزالة خلفية الفوتر */
.login-footer {
    background: transparent !important;
    backdrop-filter: none !important;
}

/* إزالة خلفية الهيدر */
.header {
    background: transparent !important;
    backdrop-filter: none !important;
    border: 1px solid var(--border-color) !important;
}

.header.scrolled {
    background: transparent !important;
}

/* إزالة خلفية الناف مينيو (موبايل) */
.nav-menu {
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(4px) !important;

}

[data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.3) !important;

}
/* إزالة خلفية الأليرت */
.alert-danger {
    background: transparent !important;
    border: 1px solid rgba(248, 81, 73, 0.5) !important;
}

/* إزالة خلفية زر الثيم واللغة */
.theme-toggle,
.lang-toggle,
.btn-signup {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
}

.theme-toggle:hover,
.lang-toggle:hover,
.btn-signup:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* إزالة خلفية روابط التنقل */
.nav-link {
    background: transparent !important;
}

.nav-link:hover {
    background: transparent !important;
}

/* إزالة خلفية التوجل لابل */
.toggle-label {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
}

.toggle-label:hover {
    background: rgba(248, 81, 73, 0.1) !important;
}

.toggle-label.active {
    background: rgba(248, 81, 73, 0.1) !important;
    border-color: var(--primary) !important;
}

/* إزالة خلفية زر إظهار كلمة المرور */
.password-toggle {
    background: transparent !important;
}

.password-toggle:hover {
    background: rgba(248, 81, 73, 0.1) !important;
}

/* إزالة خلفية روابط المنسية */
.forgot-link {
    background: transparent !important;
}

.forgot-link:hover {
    background: rgba(248, 81, 73, 0.1) !important;
}

/* إزالة خلفية أيقونة التبديل */
#loginMethodIcon {
    background: transparent !important;
}

#loginMethodIcon:hover {
    background: rgba(248, 81, 73, 0.1) !important;
}

/* ============================================
   دعم اللايت ثيم
   ============================================ */

[data-theme="light"] .glass-card {
    border: 1px solid #e0e0e0 !important;
}

[data-theme="light"] .form-input {
    border: 1px solid #e0e0e0 !important;
    color: #333 !important;
}

[data-theme="light"] .login-btn {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

[data-theme="light"] .login-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

[data-theme="light"] .switch-container {
    border: 1px solid #e0e0e0 !important;
}

[data-theme="light"] .header {
    border: 1px solid #e0e0e0 !important;
}

[data-theme="light"] .theme-toggle,
[data-theme="light"] .lang-toggle,
[data-theme="light"] .btn-signup {
    border: 1px solid #e0e0e0 !important;
    color: #333 !important;
}

[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .lang-toggle:hover,
[data-theme="light"] .btn-signup:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

[data-theme="light"] .toggle-label {
    border: 1px solid #e0e0e0 !important;
    color: #666 !important;
}

[data-theme="light"] .toggle-label.active {
    background: rgba(248, 81, 73, 0.1) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}
}