/* Dashboard - Matching Frontpage Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

/* CSS Variables from frontpage - EXACT MATCH */
:root {
    /* Primary Colors */
    --bg-primary: #0A0A0B;
    --profit-green: #00FF88;
    --electric-blue: #00D4FF;
    --alert-red: #FF0066;
    --accent-purple: #8B5CF6;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    
    /* Secondary Colors */
    --bg-secondary: #141416;
    --bg-tertiary: #1A1A1D;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #6d28d9);
    --gradient-green: linear-gradient(135deg, #00ff88, #00cc6a);
    --gradient-red: linear-gradient(135deg, #ff3366, #ff0044);
    --gradient-blue: linear-gradient(135deg, #00d4ff, #0099cc);
    
    /* Glows */
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-red: 0 0 20px rgba(255, 51, 102, 0.5);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Clean background like frontend */
.dashboard-container {
    background-color: var(--bg-primary);
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
    display: none;
}

/* Sidebar - Crypto Style */
.sidebar {
    width: 280px;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Sidebar Header with Logo */
.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

/* Sidebar Language Section */
.sidebar-language-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

#sidebar-language-switcher-container {
    display: flex;
    justify-content: center;
}

/* Simple Language Switcher */
.simple-language-switcher {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.25rem;
}

.simple-language-switcher .lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.simple-language-switcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.simple-language-switcher .lang-btn.active {
    background: rgba(0, 255, 136, 0.15);
    color: var(--profit-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.simple-language-switcher .lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.simple-language-switcher .lang-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}


.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--profit-green);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.logo-text:hover {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-green);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    color: var(--profit-green);
    background: rgba(255, 255, 255, 0.03);
}

.nav-item:hover::before {
    transform: translateX(0);
}

.nav-item.active {
    color: var(--profit-green);
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active::before {
    transform: translateX(0);
}

.nav-icon {
    font-size: 1.25rem;
    margin-right: 1rem;
    filter: saturate(0.8);
}

.nav-item.active .nav-icon {
    filter: saturate(1.5) brightness(1.2);
}

.nav-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 12px;
    color: var(--alert-red);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 0, 102, 0.1);
    border-color: var(--alert-red);
    transform: translateY(-2px);
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    position: relative;
    z-index: 1;
}

/* Top Bar - Crypto Style */
.top-bar {
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.welcome-message h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.welcome-message h2 span {
    background: linear-gradient(135deg, var(--profit-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-time {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: var(--profit-green);
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    border-color: var(--profit-green);
    box-shadow: var(--glow-green);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Dashboard Content Wrapper */
.dashboard-content {
    padding: 2rem;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards with Glass Effect - Crypto Ticker Style */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Clean glass card without shimmer */

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--profit-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Stats Grid - Crypto Ticker Style */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Remove rotating animation for cleaner look */

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--profit-green);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--profit-green);
    font-family: 'JetBrains Mono', monospace;
}

.stat-change {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.stat-change.positive {
    color: var(--profit-green);
}

.stat-change.negative {
    color: var(--loss-red);
}

/* Buttons - Crypto Style */
.btn-primary {
    background: linear-gradient(135deg, var(--profit-green), var(--electric-blue));
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--profit-green);
    border-color: var(--profit-green);
    transform: translateY(-2px);
}

/* Trading Signals Table - Crypto Style */
.signals-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.signals-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    text-align: left;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.signals-table th:first-child {
    border-radius: 12px 0 0 12px;
}

.signals-table th:last-child {
    border-radius: 0 12px 12px 0;
}

.signals-table td {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.signals-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.signal-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.signal-status.active {
    background: rgba(0, 255, 136, 0.2);
    color: var(--profit-green);
    border: 1px solid var(--profit-green);
}

.signal-status.win {
    background: rgba(0, 255, 136, 0.2);
    color: var(--profit-green);
}

.signal-status.loss {
    background: rgba(255, 51, 102, 0.2);
    color: var(--loss-red);
}

/* Subscription Cards - Crypto Style */
.subscription-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.subscription-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--profit-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.subscription-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subscription-status.active {
    background: var(--gradient-green);
    color: var(--bg-primary);
}

.subscription-status.inactive {
    background: rgba(255, 51, 102, 0.2);
    color: var(--loss-red);
    border: 1px solid var(--loss-red);
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1000;
        background: rgba(0, 255, 136, 0.9);
        border: 1px solid rgba(0, 255, 136, 0.5);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
        color: white;
        font-size: 1.25rem;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--profit-green);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    /* Hide toggle when sidebar is open */
    .sidebar.active ~ .main-content .mobile-menu-toggle {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--electric-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-purple), var(--electric-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--electric-blue), var(--accent-purple));
}

/* Dashboard-specific Top Bar Layout Adjustments */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Dashboard language switcher container */
#dashboard-language-switcher-container {
    display: flex;
    align-items: center;
}

#dashboard-language-switcher-container .language-switcher {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 10;
}

#dashboard-language-switcher-container .language-switcher-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#dashboard-language-switcher-container .language-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

#dashboard-language-switcher-container .language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

/* Subscription Badge Styles */
.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.subscription-badge.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 212, 255, 0.2));
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.subscription-badge.free {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.subscription-badge .badge-icon {
    font-size: 1rem;
}

.subscription-badge .badge-text {
    white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Top bar mobile optimization */
    .top-bar {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 60;
        height: auto;
    }
    
    /* Adjust main content to account for fixed header */
    .main-content {
        padding-top: 80px; /* Reduced for single-line header */
    }
    
    .welcome-message {
        flex: 1;
        min-width: 0; /* Allow text truncation */
        margin-left: 50px; /* Add space to avoid menu button */
    }
    
    .welcome-message h2 {
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }
    
    /* Keep welcome message on one line */
    .welcome-message h2 span {
        display: inline !important;
    }
    
    .date-time {
        display: none; /* Hide date on mobile to save space */
    }
    
    .top-bar-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    /* Subscription badge mobile */
    .subscription-badge {
        flex: 0 1 auto;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
        margin-right: 0;
    }
    
    .subscription-badge .badge-icon {
        font-size: 0.875rem;
    }
    
    .subscription-badge .badge-text {
        display: inline-block;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* User avatar mobile */
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    /* Language switcher mobile */
    #dashboard-language-switcher-container {
        margin-left: 0;
        flex-shrink: 0;
    }
    
    #dashboard-language-switcher-container .language-switcher-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
    }
    
    /* Dashboard content spacing */
    .dashboard-content {
        padding: 1rem;
    }
    
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.5rem;
        gap: 0.25rem;
    }
    
    .main-content {
        padding-top: 60px; /* Even smaller header on tiny screens */
    }
    
    .welcome-message h2 {
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .welcome-message {
        margin-left: 45px; /* Smaller margin on very small screens */
    }
    
    /* Force everything on one line */
    .welcome-message h2 span#userName {
        display: inline !important;
    }
    
    .subscription-badge {
        display: none; /* Hide badge on very small screens to save space */
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    #dashboard-language-switcher-container .language-switcher-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
        top: 0.5rem;
        left: 0.5rem;
    }
}

/* Landscape mode on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .top-bar {
        flex-direction: row;
        align-items: center;
        padding: 0.75rem 1rem;
    }
    
    .main-content {
        padding-top: 80px;
    }
    
    .welcome-message {
        flex: 1;
        text-align: left;
    }
    
    .welcome-message h2 {
        font-size: 1rem;
    }
    
    .date-time {
        display: none;
    }
    
    .top-bar-right {
        flex: 0 0 auto;
        width: auto;
    }
}

/* Notification Settings Styles */
.notification-settings {
    margin-top: 1.5rem;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.setting-info h3 {
    color: var(--profit-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.setting-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--profit-green);
    border-color: var(--profit-green);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(32px);
    background-color: white;
}

.notification-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.notification-status.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--profit-green);
}

.notification-status.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.notification-status.info {
    display: block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--electric-blue);
}
/* Upgrade button styles */
.plan-btn-upgrade {
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.plan-btn-upgrade:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00E5FF 0%, #00AADD 100%);
}

.plan-btn-disabled {
    background: rgba(128, 128, 128, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
}

.plan-upgrade-info {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
