/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* ========================================
   CEMIDO LOGIN – Modern Split Layout
   Full viewport, animated gradient, glass card
   ======================================== */

.login-page[b-s4p2908n3f] {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow: auto;
}

/* ========================================
   LEFT: Visual Panel
   ======================================== */

.login-visual[b-s4p2908n3f] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
}

.login-visual-bg[b-s4p2908n3f] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
}

.login-blob[b-s4p2908n3f] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float-b-s4p2908n3f 12s ease-in-out infinite;
}

.login-blob-1[b-s4p2908n3f] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.login-blob-2[b-s4p2908n3f] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -5%;
    left: -5%;
    animation-delay: -4s;
}

.login-blob-3[b-s4p2908n3f] {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    top: 40%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes blob-float-b-s4p2908n3f {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.login-visual-content[b-s4p2908n3f] {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.login-brand[b-s4p2908n3f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.login-brand-icon[b-s4p2908n3f] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.login-brand-name[b-s4p2908n3f] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.login-tagline[b-s4p2908n3f] {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    opacity: 0.95;
}

.login-visual-hint[b-s4p2908n3f] {
    font-size: 0.9375rem;
    opacity: 0.7;
    margin: 0;
}

/* ========================================
   RIGHT: Form Section – Gradient Wave Style
   ======================================== */

.login-form-section[b-s4p2908n3f] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(-45deg, #0f0f23, #1a1a3e, #16213e, #0f3460, #6366f1, #8b5cf6);
    background-size: 400% 400%;
    animation: login-gradient-flow-b-s4p2908n3f 15s ease infinite;
    overflow: hidden;
}

@keyframes login-gradient-flow-b-s4p2908n3f {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Wave Overlay */
.login-form-wave-container[b-s4p2908n3f] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.login-form-wave[b-s4p2908n3f] {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
    transform-origin: center;
}

.login-form-wave-1[b-s4p2908n3f] {
    animation: login-wave-move-b-s4p2908n3f 20s linear infinite;
    animation-delay: 0s;
}

.login-form-wave-2[b-s4p2908n3f] {
    animation: login-wave-move-b-s4p2908n3f 25s linear infinite reverse;
    animation-delay: -5s;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.08), transparent);
}

.login-form-wave-3[b-s4p2908n3f] {
    animation: login-wave-move-b-s4p2908n3f 30s linear infinite;
    animation-delay: -10s;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,0.1), transparent);
}

.login-form-wave-4[b-s4p2908n3f] {
    animation: login-wave-move-b-s4p2908n3f 35s linear infinite reverse;
    animation-delay: -15s;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.06), transparent);
}

@keyframes login-wave-move-b-s4p2908n3f {
    0% { transform: translateX(-50%) skewX(-5deg); }
    100% { transform: translateX(50%) skewX(-5deg); }
}

/* Particles */
.login-form-particles[b-s4p2908n3f] {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.login-form-particle[b-s4p2908n3f] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(99,102,241,0.6), transparent);
    border-radius: 50%;
    animation: login-particle-float-b-s4p2908n3f 15s linear infinite;
}

.login-form-particle:nth-child(1)[b-s4p2908n3f] { top: 20%; left: 10%; animation-delay: 0s; }
.login-form-particle:nth-child(2)[b-s4p2908n3f] { top: 60%; left: 80%; animation-delay: -3s; }
.login-form-particle:nth-child(3)[b-s4p2908n3f] { top: 80%; left: 20%; animation-delay: -6s; }
.login-form-particle:nth-child(4)[b-s4p2908n3f] { top: 30%; left: 70%; animation-delay: -9s; }
.login-form-particle:nth-child(5)[b-s4p2908n3f] { top: 10%; left: 60%; animation-delay: -12s; }
.login-form-particle:nth-child(6)[b-s4p2908n3f] { top: 70%; left: 40%; animation-delay: -15s; }

@keyframes login-particle-float-b-s4p2908n3f {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(-100px) translateX(50px) scale(1.5); }
}

/* ========================================
   Card – Glassmorphism (Gradient Wave)
   ======================================== */

.login-card[b-s4p2908n3f] {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    transform-origin: center center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-card:hover[b-s4p2908n3f] {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.login-card-glow[b-s4p2908n3f] {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #3b82f6);
    background-size: 400% 400%;
    animation: login-gradient-flow-b-s4p2908n3f 8s ease infinite;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-card:hover .login-card-glow[b-s4p2908n3f] {
    opacity: 1;
}

.login-card-header[b-s4p2908n3f] {
    margin-bottom: 2rem;
}

.login-title[b-s4p2908n3f] {
    font-size: 2.25rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle[b-s4p2908n3f] {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ========================================
   Alerts
   ======================================== */

.login-page .alert[b-s4p2908n3f],
.login-card .alert[b-s4p2908n3f] {
    border-radius: 10px;
    margin-bottom: 1.25rem;
    border: 1px solid;
    font-size: 0.875rem;
}

.login-page .alert-danger[b-s4p2908n3f],
.login-card .alert-danger[b-s4p2908n3f] {
    background: rgba(255, 107, 107, 0.2);
    color: #ffebee;
    border-color: rgba(255,255,255,0.3);
}

.login-page .alert-success[b-s4p2908n3f],
.login-card .alert-success[b-s4p2908n3f] {
    background: rgba(63, 185, 80, 0.2);
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.3);
}

.login-validation-summary[b-s4p2908n3f] {
    font-size: 0.875rem;
    color: #ffebee;
    margin-bottom: 1rem;
    list-style: none;
    padding: 0;
}

/* ========================================
   Input Fields – Gradient Wave Style
   ======================================== */

.login-field[b-s4p2908n3f] {
    position: relative;
    margin-bottom: 1.75rem;
}

.login-input-container[b-s4p2908n3f] {
    overflow: hidden;
    border-radius: 16px;
}

.login-input-bg[b-s4p2908n3f] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.login-input-container:focus-within .login-input-bg[b-s4p2908n3f] {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.login-input[b-s4p2908n3f] {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: rgba(255,255,255,0.95);
    background: transparent;
    border: none;
    border-radius: 16px;
    outline: none;
    position: relative;
    z-index: 2;
    display: block;
    box-sizing: border-box;
    transition: padding 0.25s ease;
}

.login-input[b-s4p2908n3f]::placeholder {
    color: transparent;
}

.login-label[b-s4p2908n3f] {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 3;
}

.login-input-container:focus-within .login-label[b-s4p2908n3f],
.login-input:not(:placeholder-shown) ~ .login-label[b-s4p2908n3f] {
    top: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    transform: translateY(0);
}

.login-input-container:focus-within .login-input[b-s4p2908n3f],
.login-input:not(:placeholder-shown)[b-s4p2908n3f] {
    padding-top: 1.9rem;
}

.login-input-wave[b-s4p2908n3f] {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: all 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.login-input-container:focus-within .login-input-wave[b-s4p2908n3f] {
    left: 100%;
    animation: login-input-wave-flow-b-s4p2908n3f 1s ease-in-out;
}

@keyframes login-input-wave-flow-b-s4p2908n3f {
    0% { left: -100%; }
    100% { left: 100%; }
}

.login-validation[b-s4p2908n3f] {
    font-size: 0.8125rem;
    color: #ffcdd2;
    margin-top: 0.375rem;
    display: block;
}

/* ========================================
   Options Row
   ======================================== */

.login-options[b-s4p2908n3f] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.login-remember[b-s4p2908n3f] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

.login-checkbox[b-s4p2908n3f] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #6366f1;
    cursor: pointer;
}

/* ========================================
   Submit Button – Gradient Wave Style
   ======================================== */

.login-submit[b-s4p2908n3f] {
    width: 100%;
    height: 56px;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: rgba(255,255,255,0.95);
    background: transparent;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.login-submit-bg[b-s4p2908n3f] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.login-submit:hover .login-submit-bg[b-s4p2908n3f] {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.15));
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.login-submit-text[b-s4p2908n3f] {
    position: relative;
    z-index: 2;
}

/* ========================================
   Responsive – Mobile
   ======================================== */

@media (max-width: 900px) {
    .login-page[b-s4p2908n3f] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .login-visual[b-s4p2908n3f] {
        padding: 2rem;
        min-height: 200px;
    }

    .login-brand[b-s4p2908n3f] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .login-brand-name[b-s4p2908n3f] {
        font-size: 1.5rem;
    }

    .login-tagline[b-s4p2908n3f] {
        font-size: 1rem;
    }

    .login-visual-hint[b-s4p2908n3f] {
        display: none;
    }

    .login-blob[b-s4p2908n3f] {
        filter: blur(60px);
        opacity: 0.4;
    }

    .login-form-section[b-s4p2908n3f] {
        padding: 2rem 1.5rem;
    }

    .login-card[b-s4p2908n3f] {
        padding: 2rem;
        border-radius: 20px;
    }

    .login-title[b-s4p2908n3f] {
        font-size: 1.875rem;
    }

    .login-form-wave[b-s4p2908n3f] {
        width: 150%;
        left: -25%;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Dark Dashboard Layout */
.app-container[b-vx0h9ozy71] {
    display: flex;
    min-height: 100vh;
    background: #0d1117;
    position: relative;
}

.menu-toggle-check[b-vx0h9ozy71] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Toggle-Button: sichtbar oben links */
.menu-toggle-btn[b-vx0h9ozy71] {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #8b949e;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.menu-toggle-btn:hover[b-vx0h9ozy71] {
    background: #21262d;
    color: #f0f6fc;
}

.menu-toggle-icon-close[b-vx0h9ozy71] {
    display: none;
}

.menu-toggle-check:checked ~ .menu-toggle-btn .menu-toggle-icon-open[b-vx0h9ozy71] {
    display: none;
}

.menu-toggle-check:checked ~ .menu-toggle-btn .menu-toggle-icon-close[b-vx0h9ozy71] {
    display: block;
}

/* Overlay: nur sichtbar wenn Menü offen, Klick schließt */
.sidebar-overlay[b-vx0h9ozy71] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
}

.menu-toggle-check:checked ~ .sidebar-overlay[b-vx0h9ozy71] {
    display: block;
}

/* Sidebar: fest links, über Overlay */
.sidebar[b-vx0h9ozy71] {
    position: fixed;
    left: -260px;
    top: 0;
    z-index: 1000;
    width: 240px;
    height: 100vh;
    background: #161b22;
    border-right: 1px solid #30363d;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.2s ease;
    box-shadow: 4px 0 12px rgba(0,0,0,0.2);
}

.menu-toggle-check:checked ~ .sidebar[b-vx0h9ozy71] {
    left: 0;
}

/* Hauptinhalt: Platz für Toggle-Button */
.main-content[b-vx0h9ozy71] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    min-width: 0;
}

.sidebar ~ .main-content[b-vx0h9ozy71],
.menu-toggle-btn ~ .main-content[b-vx0h9ozy71] {
    margin-left: 0;
}

.content-area[b-vx0h9ozy71] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1.5rem;
    padding-top: 4rem;
}

@media (max-width: 768px) {
    .content-area[b-vx0h9ozy71] {
        padding: 1rem;
        padding-top: 4rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Dark Dashboard Navigation */
.nav-container[b-m894fqoji6] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 0;
}

/* Brand */
.nav-brand[b-m894fqoji6] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo[b-m894fqoji6] {
    width: 32px;
    height: 32px;
    background: #238636;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.brand-name[b-m894fqoji6] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f0f6fc;
    letter-spacing: -0.01em;
}

/* Nav Menu */
.nav-menu[b-m894fqoji6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.75rem;
}

/* Section Headers */
.nav-section[b-m894fqoji6] {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8b949e;
    padding: 1rem 0.5rem 0.5rem;
    margin-top: 0.25rem;
}

/* Nav Items */
.nav-item[b-m894fqoji6] {
    margin: 1px 0;
}

.nav-link[b-m894fqoji6] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    color: #c9d1d9;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s ease;
    font-size: 0.875rem;
    font-weight: 400;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.nav-link:hover[b-m894fqoji6] {
    background: #21262d;
    color: #f0f6fc;
}

.nav-link.active[b-m894fqoji6] {
    background: #21262d;
    color: #f0f6fc;
    font-weight: 500;
}

.nav-icon[b-m894fqoji6] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

.nav-link:hover .nav-icon[b-m894fqoji6],
.nav-link.active .nav-icon[b-m894fqoji6] {
    opacity: 1;
}

/* Logout Button */
.logout-btn:hover[b-m894fqoji6] {
    background: rgba(248, 81, 73, 0.1);
    color: #f85149;
}

/* /Components/Pages/Backtesting.razor.rz.scp.css */
/* Backtest-Chart: volle Viewport-Höhe */
.backtest-chart-row[b-mc7syyxssc] {
    min-height: calc(100vh - 11rem);
    flex: 1;
}

.backtest-chart-card[b-mc7syyxssc] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.backtest-chart-body[b-mc7syyxssc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0.5rem !important;
}

.backtest-chart-container[b-mc7syyxssc] {
    flex: 1;
    min-height: 350px;
    position: relative;
}

[b-mc7syyxssc] .backtest-resize-handle:hover {
    background: #4a4a6a !important;
}
/* /Components/Pages/Charts.razor.rz.scp.css */
.charts-page[b-xanfqgnozc] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.charts-toolbar[b-xanfqgnozc] {
    flex-shrink: 0;
}

.charts-container[b-xanfqgnozc] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.trading-chart[b-xanfqgnozc] {
    flex: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Indikator-Dropdown (ohne Bootstrap-JS) */
.indicator-dropdown[b-xanfqgnozc] {
    position: relative;
}

.indicator-dropdown-backdrop[b-xanfqgnozc] {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: transparent;
}

.indicator-dropdown-menu[b-xanfqgnozc] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 4px;
    padding: 6px 0;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.indicator-dropdown-header[b-xanfqgnozc] {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #8b949e;
    text-transform: uppercase;
}

.indicator-dropdown-item[b-xanfqgnozc] {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    text-align: left;
    color: #f0f6fc;
    background: none;
    border: none;
    cursor: pointer;
}

.indicator-dropdown-item:hover[b-xanfqgnozc] {
    background: #21262d;
}

/* Einklappbare Indikator-Parameter */
details summary.cursor-pointer[b-xanfqgnozc] {
    cursor: pointer;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-page[b-c4r07eny37] {
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-header[b-c4r07eny37] {
    padding-bottom: 0.5rem;
}

.dashboard-title[b-c4r07eny37] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dashboard-subtitle[b-c4r07eny37] {
    font-size: 0.9375rem;
}

.dashboard-section-title[b-c4r07eny37] {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.dashboard-card[b-c4r07eny37] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-default);
    border: 1px solid var(--border-default);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, border-color 0.15s ease;
    height: 100%;
}

.dashboard-card:hover[b-c4r07eny37] {
    background: var(--bg-subtle);
    border-color: var(--accent-primary);
}

.dashboard-card-icon[b-c4r07eny37] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.dashboard-card-icon svg[b-c4r07eny37] {
    width: 20px;
    height: 20px;
}

.dashboard-card-icon-charts[b-c4r07eny37] {
    background: rgba(88, 166, 255, 0.15);
    color: var(--accent-primary);
}

.dashboard-card-icon-backtest[b-c4r07eny37] {
    background: rgba(63, 185, 80, 0.15);
    color: var(--accent-success);
}

.dashboard-card-icon-pl[b-c4r07eny37] {
    background: rgba(210, 153, 34, 0.15);
    color: var(--accent-warning);
}

.dashboard-card-icon-status[b-c4r07eny37] {
    background: rgba(88, 166, 255, 0.15);
    color: var(--accent-info);
}

.dashboard-card-icon-seasonality[b-c4r07eny37] {
    background: rgba(163, 113, 247, 0.15);
    color: #a371f7;
}

.dashboard-card-icon-settings[b-c4r07eny37] {
    background: rgba(139, 148, 158, 0.15);
    color: var(--text-muted);
}

.dashboard-card-body[b-c4r07eny37] {
    flex: 1;
    min-width: 0;
}

.dashboard-card-title[b-c4r07eny37] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.dashboard-card-desc[b-c4r07eny37] {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.dashboard-card-arrow[b-c4r07eny37] {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 1rem;
    transition: transform 0.15s ease;
}

.dashboard-card:hover .dashboard-card-arrow[b-c4r07eny37] {
    color: var(--accent-primary);
    transform: translateX(2px);
}

.dashboard-quick-info[b-c4r07eny37] {
    margin-top: 1.5rem;
}

.mx-2[b-c4r07eny37] {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.d-inline-block[b-c4r07eny37] {
    display: inline-block;
}
/* /Components/Pages/Seasonality.razor.rz.scp.css */
.seasonality-page[b-ko73gna9pu] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding-bottom: 1rem;
}

[b-ko73gna9pu] .instrument-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-default, #fff);
    z-index: 1050;
    border-radius: 0 0 6px 6px;
}

[b-ko73gna9pu] .instrument-dropdown-group {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted, #6c757d);
    background: var(--bg-subtle, #f8f9fa);
    position: sticky;
    top: 0;
}

[b-ko73gna9pu] .instrument-dropdown-item {
    padding: 5px 10px;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-ko73gna9pu] .instrument-dropdown-item:hover,
[b-ko73gna9pu] .instrument-dropdown-item.active {
    background: var(--accent-primary, #0d6efd);
    color: #fff;
}

[b-ko73gna9pu] .instrument-dropdown-item.active .text-muted,
[b-ko73gna9pu] .instrument-dropdown-item:hover .text-muted {
    color: rgba(255,255,255,0.7) !important;
}
