/* _content/TradingJournal/Components/Layout/MainLayout.razor.rz.scp.css */
/* =========================
   GLOBAL LAYOUT FIX
========================= */
html[b-p2424s30qu],
body[b-p2424s30qu] {
    height: 100%;
}

body[b-p2424s30qu] {
    overflow: hidden;
}

/* =========================
   PAGE WRAPPER
========================= */
.page[b-p2424s30qu] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* =========================
   TOP BAR
========================= */
.topbar[b-p2424s30qu] {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 16px;
    background: linear-gradient(135deg, #0f172a, #1e293b, #111827);
    position: sticky;
    top: 0;
    z-index: 3000;
    flex-shrink: 0;
}

.page-title[b-p2424s30qu] {
    color: white;
    display: flex;
    align-items: center;
    height: 44px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    position: relative;
}

/* =========================
   MENU BUTTON
========================= */
.menu-btn[b-p2424s30qu] {
    color: red;
}

/* =========================
   USER INFO
========================= */
.user-info[b-p2424s30qu] {
    min-width: 180px;
    text-align: right;
}

.username[b-p2424s30qu] {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* =========================
   DRAWER
========================= */
.drawer[b-p2424s30qu] {
    position: fixed;
    top: 64px;
    left: 0;
    width: 280px;
    height: calc(100dvh - 64px);
    max-height: calc(100dvh - 64px);
    overflow: hidden;
    background: white;
    box-shadow: 2px 0 12px rgba(0, 0, 0, .15);
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
    z-index: 2000;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.drawer.open[b-p2424s30qu] {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s ease, visibility 0s;
}

/* =========================
   OVERLAY
========================= */
.overlay[b-p2424s30qu] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1500;
}

/* =========================
   MAIN CONTENT AREA
========================= */
.content[b-p2424s30qu] {
    flex: 1;
    height: calc(100vh - 64px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

/* =========================
   LOGOUT MODAL
========================= */
.modal-backdrop[b-p2424s30qu] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(3px);
    z-index: 6000;
}

.modal-box[b-p2424s30qu] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 500px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;

    background: white;
    color: #111827;

    padding: 28px;
    border-radius: 18px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15),
        0 8px 16px rgba(0, 0, 0, .08);

    z-index: 6001;
}

.modal-box h3[b-p2424s30qu] {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.modal-actions[b-p2424s30qu] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.save[b-p2424s30qu] {
    width: 100px;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    background: #ef4444;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.save:hover[b-p2424s30qu] {
    background: #dc2626;
}

.cancel[b-p2424s30qu] {
    width: 100px;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    background: #e5e7eb;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.cancel:hover[b-p2424s30qu] {
    background: #d1d5db;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .topbar[b-p2424s30qu] {
        padding: 0 12px;
    }

    .drawer[b-p2424s30qu] {
        width: 240px;
        height: calc(100dvh - 64px);
        max-height: calc(100dvh - 64px);
    }

    .content[b-p2424s30qu] {
        padding: 0;
    }

    .menu-btn[b-p2424s30qu] {
        font-size: 26px;
    }

    .modal-box[b-p2424s30qu] {
        width: 90vw;
        max-width: 90vw;
        padding: 18px;
        border-radius: 14px;
        max-height: 88vh;
    }

    .modal-box h3[b-p2424s30qu] {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .modal-actions[b-p2424s30qu] {
        margin-top: 20px;
        gap: 8px;
    }

    .save[b-p2424s30qu],
    .cancel[b-p2424s30qu] {
        flex: 1;
        width: auto;
        padding: 10px;
    }
}
/* _content/TradingJournal/Components/Layout/NavMenu.razor.rz.scp.css */
.menu-container[b-a86velbpv4] {
    display: flex;
    flex-direction: column;

    padding: 12px;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;

    background: linear-gradient(135deg, #0f172a, #1e293b, #111827);
}

.menu-logo[b-a86velbpv4] {
    font-size: 22px;
    font-weight: 600;
    color: white;
    padding: 14px 12px;
    letter-spacing: -1px;
}

.menu-divider[b-a86velbpv4] {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 10px 0;
}

.menu-item[b-a86velbpv4] {
    align-items: center;
    margin-bottom: 4px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon[b-a86velbpv4] {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    color: inherit;
}

.menu-footer[b-a86velbpv4] {
    margin-top: auto;
    padding: 18px 12px 12px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #64748b;
    user-select: none;
}

.menu-footer div[b-a86velbpv4] {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .menu-logo[b-a86velbpv4] {
        font-size: 20px;
    }

    .menu-item[b-a86velbpv4] {
        font-size: 15px;
        padding: 12px;
    }

    .icon[b-a86velbpv4] {
        font-size: 20px;
    }

    .menu-footer[b-a86velbpv4] {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}
/* _content/TradingJournal/Components/Pages/ForgotPassword.razor.rz.scp.css */
/* ===========================
   PAGE
=========================== */

.forgot-page[b-082d0dnok1] {
    min-height: 100vh;
    background: #080d16;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* ===========================
   CARD
=========================== */

.forgot-card[b-082d0dnok1] {
    width: 100%;
    max-width: 450px;

    background: #0f1722;

    border: 1px solid #1f2937;
    border-radius: 22px;

    padding: 42px;

    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

/* ===========================
   BRAND
=========================== */

.forgot-brand[b-082d0dnok1] {
    text-align: center;
    margin-bottom: 30px;
}

.brand-badge[b-082d0dnok1] {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);

    color: white;

    font-size: 20px;
    font-weight: 800;
}

.forgot-brand h1[b-082d0dnok1] {
    margin: 0;

    color: #f8fafc;

    font-size: 30px;
    font-weight: 800;
}

.forgot-brand p[b-082d0dnok1] {
    margin: 10px auto 0;
    max-width: 320px;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   FORM
=========================== */

.form-group[b-082d0dnok1] {
    margin-bottom: 22px;
}

.form-group label[b-082d0dnok1] {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

/* ===========================
   INPUT
=========================== */

.input-wrapper[b-082d0dnok1] {
    position: relative;
    width: 100%;
}

[b-082d0dnok1] .input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #64748b;

    pointer-events: none;
    z-index: 2;
}

[b-082d0dnok1] input.forgot-input {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 58px !important;

    box-sizing: border-box !important;

    background: #111827 !important;

    border: 1px solid #273449 !important;
    border-radius: 14px !important;

    color: #f8fafc !important;

    font-size: 16px !important;
    line-height: normal !important;

    outline: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    transition: .2s;
}

[b-082d0dnok1] input.forgot-input.with-left-icon {
    padding-left: 52px !important;
}

[b-082d0dnok1] input.forgot-input::placeholder {
    color: #64748b !important;
}

[b-082d0dnok1] input.forgot-input:focus {
    background: #111827 !important;

    border-color: #3b82f6 !important;

    box-shadow: 0 0 0 3px rgba(59, 130, 246, .18) !important;
}

[b-082d0dnok1] input.forgot-input:-webkit-autofill,
[b-082d0dnok1] input.forgot-input:-webkit-autofill:hover,
[b-082d0dnok1] input.forgot-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc !important;
    box-shadow: 0 0 0 1000px #111827 inset !important;
    border: 1px solid #273449 !important;
}

/* ===========================
   BUTTON
=========================== */

.forgot-btn[b-082d0dnok1] {
    width: 100%;
    height: 56px;

    margin-top: 8px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.forgot-btn:hover:not(:disabled)[b-082d0dnok1] {
    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(37, 99, 235, .25);
}

.forgot-btn:disabled[b-082d0dnok1] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===========================
   MESSAGE
=========================== */

.forgot-success-message[b-082d0dnok1],
.forgot-error-message[b-082d0dnok1] {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.forgot-success-message[b-082d0dnok1] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 10px;
}

.forgot-error-message[b-082d0dnok1] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #f87171;
}

.success-icon[b-082d0dnok1] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===========================
   BACK TO LOGIN
=========================== */

.login-link[b-082d0dnok1] {
    margin-top: 28px;

    text-align: center;
}

.login-link span[b-082d0dnok1] {
    color: #94a3b8;
}

.login-link a[b-082d0dnok1] {
    margin-left: 6px;

    color: #60a5fa;

    font-weight: 700;

    text-decoration: none;
}

.login-link a:hover[b-082d0dnok1] {
    color: #93c5fd;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .forgot-page[b-082d0dnok1] {
        height: 100svh;
        min-height: 100svh;

        align-items: flex-start;

        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: calc(140px + env(safe-area-inset-bottom));

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;

        box-sizing: border-box;
    }

    .forgot-card[b-082d0dnok1] {
        padding: 26px 22px;
        border-radius: 20px;

        margin-bottom: 70px;
    }

    .forgot-brand[b-082d0dnok1] {
        margin-bottom: 22px;
    }

    .brand-badge[b-082d0dnok1] {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .forgot-brand h1[b-082d0dnok1] {
        font-size: 25px;
    }

    .forgot-brand p[b-082d0dnok1] {
        font-size: 13px;
    }

    .form-group[b-082d0dnok1] {
        margin-bottom: 16px;
    }

    [b-082d0dnok1] input.forgot-input {
        height: 52px !important;
        font-size: 16px !important;
    }

    .forgot-btn[b-082d0dnok1] {
        height: 52px;
    }

    .forgot-success-message[b-082d0dnok1],
    .forgot-error-message[b-082d0dnok1] {
        margin-top: 14px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .login-link[b-082d0dnok1] {
        margin-top: 22px;
        padding-bottom: 30px;
    }
}
/* _content/TradingJournal/Components/Pages/Home.razor.rz.scp.css */
.home-page[b-tiketi8vbl] {
    flex: 1;
    min-height: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px;
    padding-bottom: 70px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    background: #080d16;
    color: #f8fafc;
}

/* WELCOME */
/* WELCOME */
.welcome-section[b-tiketi8vbl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.welcome-section h2[b-tiketi8vbl] {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
    flex-shrink: 0;
}

/* CARD */
.dashboard-card[b-tiketi8vbl] {
    background: #0f1722;
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.section-title[b-tiketi8vbl] {
    font-size: 16px;
    font-weight: 800;
    color: #f8fafc;
}

/* CALENDAR */
.calendar-card[b-tiketi8vbl] {
    padding: 20px 22px;
}

.calendar-top[b-tiketi8vbl] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.calendar-header[b-tiketi8vbl] {
    width: calc(100% - 356px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.month-btn[b-tiketi8vbl] {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.month-btn:disabled[b-tiketi8vbl] {
    opacity: 0.25;
    cursor: not-allowed;
}

.month-title[b-tiketi8vbl] {
    min-width: 135px;
    text-align: center;
    color: #f8fafc;
    font-size: 15px;
    font-weight: 800;
}

.calendar-content[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}

.week-row[b-tiketi8vbl],
.calendar-grid[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    width: 100%;
}

.week-row[b-tiketi8vbl] {
    border-bottom: 1px solid #1f2937;
}

.week-row div[b-tiketi8vbl] {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.day-cell[b-tiketi8vbl] {
    min-height: 58px;
    border-bottom: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.day-cell.empty[b-tiketi8vbl] {
    cursor: default;
}

.day-number[b-tiketi8vbl] {
    color: #f8fafc;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.day-dot[b-tiketi8vbl],
.calendar-legend i[b-tiketi8vbl] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
}

.profit-dot[b-tiketi8vbl] {
    background: #38d989;
}

.loss-dot[b-tiketi8vbl] {
    background: #ff5d6c;
}

.be-dot[b-tiketi8vbl] {
    background: #8b95a5;
}

.selected-day .day-number[b-tiketi8vbl] {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #5856e8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(88, 86, 232, 0.55);
}

.calendar-legend[b-tiketi8vbl] {
    display: flex;
    gap: 24px;
    margin-top: 18px;
    color: #cbd5e1;
    font-size: 13px;
}

.calendar-legend span[b-tiketi8vbl] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* DAY SUMMARY */
.day-summary[b-tiketi8vbl] {
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 28px;
    min-height: 310px;
    background: #0d141f;
}

.day-summary h3[b-tiketi8vbl] {
    margin: 0 0 26px;
    font-size: 16px;
    color: #f8fafc;
}

.summary-pnl[b-tiketi8vbl] {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
}

.day-summary>span[b-tiketi8vbl] {
    color: #9ca3af;
    font-size: 14px;
}

.summary-divider[b-tiketi8vbl] {
    height: 1px;
    background: #1f2937;
    margin: 30px 0 22px;
}

.summary-row[b-tiketi8vbl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5e1;
    font-size: 14px;
}

.summary-row strong[b-tiketi8vbl] {
    color: #f8fafc;
}

.view-trades-btn[b-tiketi8vbl] {
    display: block;
    margin: 22px auto 0;
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.view-trades-btn:hover[b-tiketi8vbl] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.view-trades-btn:disabled[b-tiketi8vbl] {
    opacity: 0.45;
    cursor: not-allowed;
}

/* QUICK STATS */
.quick-card[b-tiketi8vbl] {
    padding: 20px;
}

.quick-card .section-title[b-tiketi8vbl] {
    margin-bottom: 18px;
}

.stats-grid[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card[b-tiketi8vbl] {
    background: #0d141f;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

[b-tiketi8vbl] .stat-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    padding: 16px;
    border-radius: 50%;
    box-sizing: border-box;
}

.stat-card span[b-tiketi8vbl] {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.stat-card strong[b-tiketi8vbl] {
    font-size: 23px;
    font-weight: 900;
    color: #f8fafc;
}

[b-tiketi8vbl] .total-icon {
    background: rgba(37, 99, 235, 0.22) !important;
    color: #93c5fd !important;
}

[b-tiketi8vbl] .win-icon {
    background: rgba(34, 197, 94, 0.22) !important;
    color: #6ee7b7 !important;
}

[b-tiketi8vbl] .pnl-icon {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
}

[b-tiketi8vbl] .days-icon {
    background: rgba(124, 58, 237, 0.22) !important;
    color: #c4b5fd !important;
}

/* INSIGHT */
.insight-grid[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* TOP 3 MISTAKES */
.mistake-list[b-tiketi8vbl] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.mistake-row[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: 42px 180px 1fr 28px;
    align-items: center;
    gap: 18px;
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mistake-row:hover[b-tiketi8vbl] {
    background: rgba(255, 255, 255, 0.035);
}

.mistake-row .rank[b-tiketi8vbl] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #111827;
    border: 1px solid #1f2937;
    color: #f8fafc;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mistake-category[b-tiketi8vbl] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff5d6c;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.mistake-open-icon[b-tiketi8vbl] {
    font-size: 17px !important;
    color: #cbd5e1;
    opacity: 0.9;
}

.mistake-row:hover .mistake-category[b-tiketi8vbl] {
    color: #ff7b87;
}

.mistake-row:hover .mistake-open-icon[b-tiketi8vbl] {
    color: #ff7b87;
}

.mistake-bar[b-tiketi8vbl] {
    height: 9px;
    background: #1f2937;
    border-radius: 999px;
    overflow: hidden;
}

.mistake-bar div[b-tiketi8vbl] {
    height: 100%;
    background: #ff5d6c;
    border-radius: 999px;
}

.mistake-count[b-tiketi8vbl] {
    text-align: right;
    font-weight: 900;
    color: #f8fafc;
}

.common-mistake[b-tiketi8vbl] {
    margin-top: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

/* MISTAKE IMPACT */
.impact-row[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 20px;
}

.impact-box[b-tiketi8vbl] {
    min-height: 160px;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.impact-box span[b-tiketi8vbl] {
    color: #e5e7eb;
    font-size: 14px;
    margin-bottom: 4px;
}

.impact-box strong[b-tiketi8vbl] {
    font-size: 28px;
    font-weight: 900;
}

.impact-icon[b-tiketi8vbl] {
    font-size: 34px !important;
    opacity: 0.8;
}

.mistake-box[b-tiketi8vbl] {
    background: rgba(255, 93, 108, 0.06);
    border: 1px solid rgba(255, 93, 108, 0.25);
}

.mistake-box .impact-icon[b-tiketi8vbl] {
    color: #ff5d6c;
}

.verified-box[b-tiketi8vbl] {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.28);
}

.verified-box .impact-icon[b-tiketi8vbl] {
    color: #6366f1;
}

/* TOP MISTAKE PROGRESS */
.progress-table[b-tiketi8vbl] {
    margin-top: 20px;
}

.progress-head[b-tiketi8vbl],
.progress-row[b-tiketi8vbl] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.4fr;
    align-items: center;
    gap: 16px;
}

.progress-head[b-tiketi8vbl] {
    font-size: 14px;
    padding: 0 8px 14px;
    border-bottom: 1px solid #1f2937;
    color: #cbd5e1;
}

.progress-row[b-tiketi8vbl] {
    min-height: 42px;
    padding: 0 8px;
    border-bottom: 1px solid #1f2937;
    color: #f8fafc;
    font-size: 14px;
}

.progress-row:last-child[b-tiketi8vbl] {
    border-bottom: none;
}

.progress-row strong:first-child[b-tiketi8vbl] {
    color: #f8fafc;
}

.progress-row span[b-tiketi8vbl] {
    color: #e5e7eb;
}

.progress-good[b-tiketi8vbl] {
    color: #16A34A;
}

.progress-bad[b-tiketi8vbl] {
    color: #DC2626;
}

.progress-same[b-tiketi8vbl] {
    color: #6B7280;
}

/* TEXT COLORS */
.profit-text[b-tiketi8vbl] {
    color: #38d989 !important;
}

.loss-text[b-tiketi8vbl] {
    color: #ff5d6c !important;
}

.neutral-text[b-tiketi8vbl] {
    color: #9ca3af !important;
}

/* EMPTY STATE */
.empty-state[b-tiketi8vbl] {
    padding: 16px;
    border-radius: 8px;
    background: #0d141f;
    border: 1px solid #1f2937;
    color: #9ca3af;
    font-size: 14px;
}

.empty-state-link[b-tiketi8vbl] {
    text-align: left;
}

.empty-action[b-tiketi8vbl] {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-top: 10px;

    color: #60a5fa;
    font-weight: 700;

    cursor: pointer;
    transition: color .2s ease;
}

.empty-action:hover[b-tiketi8vbl] {
    color: #93c5fd;
}

.empty-action-icon[b-tiketi8vbl] {
    font-size: 16px !important;
}

/* kept for old markup safety */
.common-mistake-link[b-tiketi8vbl] {
    color: #ff5d6c;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.common-mistake-link:hover[b-tiketi8vbl] {
    color: #ff7b87;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.today-info[b-tiketi8vbl] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 9px 14px 9px 8px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

[b-tiketi8vbl] .info-icon {
    color: #60a5fa;
    font-size: 18px;
    flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .home-page[b-tiketi8vbl] {
        padding: 14px;
        padding-bottom: 80px;
    }

    .welcome-section[b-tiketi8vbl] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .welcome-section h2[b-tiketi8vbl] {
        font-size: 20px;
    }

    .today-info[b-tiketi8vbl] {
        margin: 0;
        white-space: normal;
    }

    .dashboard-card[b-tiketi8vbl] {
        padding: 16px;
        border-radius: 10px;
    }

    .calendar-top[b-tiketi8vbl] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .calendar-header[b-tiketi8vbl] {
        width: 100%;
        justify-content: space-between;
    }

    .calendar-content[b-tiketi8vbl] {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .day-summary[b-tiketi8vbl] {
        min-height: auto;
        padding: 18px;
        padding-bottom: 24px;
    }

    .day-cell[b-tiketi8vbl] {
        min-height: 46px;
        gap: 6px;
    }

    .day-number[b-tiketi8vbl] {
        font-size: 13px;
    }

    .selected-day .day-number[b-tiketi8vbl] {
        width: 28px;
        height: 28px;
    }

    .calendar-legend[b-tiketi8vbl] {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
    }

    .stats-grid[b-tiketi8vbl] {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card[b-tiketi8vbl] {
        padding: 14px;
        gap: 10px;
    }

    [b-tiketi8vbl] .stat-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        padding: 11px;
    }

    .stat-card strong[b-tiketi8vbl] {
        font-size: 18px;
    }

    .insight-grid[b-tiketi8vbl] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mistake-row[b-tiketi8vbl] {
        grid-template-columns: 34px 120px 1fr 24px;
        gap: 10px;
        padding: 8px 6px;
        font-size: 13px;
    }

    .mistake-row .rank[b-tiketi8vbl] {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .mistake-category[b-tiketi8vbl] {
        font-size: 13px;
        gap: 4px;
    }

    .mistake-open-icon[b-tiketi8vbl] {
        font-size: 15px !important;
    }

    .mistake-bar[b-tiketi8vbl] {
        height: 8px;
    }

    .impact-row[b-tiketi8vbl] {
        grid-template-columns: 1fr;
    }

    .impact-box span[b-tiketi8vbl] {
        font-size: 13px;
    }

    .impact-box strong[b-tiketi8vbl] {
        font-size: 24px;
        font-weight: 900;
    }

    .impact-icon[b-tiketi8vbl] {
        font-size: 30px !important;
    }

    .progress-head[b-tiketi8vbl],
    .progress-row[b-tiketi8vbl] {
        grid-template-columns: 2fr 0.7fr 0.7fr 0.9fr;
        gap: 8px;
        font-size: 13px;
    }

    .view-trades-btn[b-tiketi8vbl] {
        display: block;
        margin: 20px auto 0;
        padding: 10px 18px;
        font-size: 14px;
    }
}
/* _content/TradingJournal/Components/Pages/Login.razor.rz.scp.css */
/* ===========================
   PAGE
=========================== */

.login-page[b-k1x6eenb05] {
    min-height: 100vh;
    background: #080d16;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* ===========================
   CARD
=========================== */

.login-card[b-k1x6eenb05] {
    width: 100%;
    max-width: 450px;

    background: #0f1722;

    border: 1px solid #1f2937;
    border-radius: 22px;

    padding: 42px;

    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

/* ===========================
   BRAND
=========================== */

.login-brand[b-k1x6eenb05] {
    text-align: center;
    margin-bottom: 34px;
}

.brand-badge[b-k1x6eenb05] {
    width: 60px;
    height: 60px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);

    color: white;

    font-size: 20px;
    font-weight: 800;
}

.login-brand h1[b-k1x6eenb05] {
    margin: 0;
    color: white;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
}

.login-brand p[b-k1x6eenb05] {
    margin-top: 6px;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   FORM
=========================== */

.form-group[b-k1x6eenb05] {
    margin-bottom: 22px;
}

.form-group label[b-k1x6eenb05] {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

/* ===========================
   INPUT
=========================== */

.input-wrapper[b-k1x6eenb05] {
    position: relative;
    width: 100%;
}

/* MudIcon inside isolated css needs ::deep */
[b-k1x6eenb05] .input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #64748b;

    pointer-events: none;
    z-index: 2;
}

/* Blazor InputText needs ::deep */
[b-k1x6eenb05] input.login-input {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 58px !important;

    box-sizing: border-box !important;

    background: #111827 !important;

    border: 1px solid #273449 !important;
    border-radius: 14px !important;

    color: #f8fafc !important;

    font-size: 16px !important;
    line-height: normal !important;

    outline: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    transition: .2s;
}

[b-k1x6eenb05] input.login-input.with-left-icon {
    padding-left: 52px !important;
}

[b-k1x6eenb05] input.login-input.password-input {
    padding-right: 54px !important;
}

[b-k1x6eenb05] input.login-input::placeholder {
    color: #64748b !important;
}

[b-k1x6eenb05] input.login-input:focus {
    background: #111827 !important;

    border-color: #3b82f6 !important;

    box-shadow: 0 0 0 3px rgba(59, 130, 246, .18) !important;
}

/* Remove ugly browser autofill white background */
[b-k1x6eenb05] input.login-input:-webkit-autofill,
[b-k1x6eenb05] input.login-input:-webkit-autofill:hover,
[b-k1x6eenb05] input.login-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc !important;
    box-shadow: 0 0 0 1000px #111827 inset !important;
    border: 1px solid #273449 !important;
}

/* ===========================
   EYE
=========================== */

.eye-btn[b-k1x6eenb05] {
    position: absolute;

    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    padding: 0;
    margin: 0;

    color: #94a3b8;

    cursor: pointer;

    z-index: 3;
}

.eye-btn:hover[b-k1x6eenb05] {
    color: white;
}

/* ===========================
   BUTTON
=========================== */

.login-btn[b-k1x6eenb05] {
    width: 100%;
    height: 56px;

    margin-top: 8px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.login-btn:hover[b-k1x6eenb05] {
    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(37, 99, 235, .25);
}

/* ===========================
   MESSAGE
=========================== */

/* ===========================
   MESSAGE
=========================== */

.login-success-message[b-k1x6eenb05],
.login-error-message[b-k1x6eenb05] {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.login-success-message[b-k1x6eenb05] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-error-message[b-k1x6eenb05] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #f87171;
}

.success-icon[b-k1x6eenb05] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===========================
   REGISTER
=========================== */

.register-link[b-k1x6eenb05] {
    margin-top: 28px;

    text-align: center;
}

.register-link span[b-k1x6eenb05] {
    color: #94a3b8;
}

.register-link a[b-k1x6eenb05] {
    margin-left: 6px;

    color: #60a5fa;

    font-weight: 700;

    text-decoration: none;
}

.register-link a:hover[b-k1x6eenb05] {
    color: #93c5fd;
}

/* ===========================
   LOGIN OPTIONS
=========================== */

.login-options[b-k1x6eenb05] {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-top: -6px;
    margin-bottom: 18px;
}

.remember-email[b-k1x6eenb05] {
    display: flex !important;
    align-items: center;
    gap: 8px;

    margin: 0 !important;

    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    user-select: none;
}

[b-k1x6eenb05] input.remember-checkbox {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #2563eb;
    cursor: pointer;
    flex-shrink: 0;
}

.forgot-password-link[b-k1x6eenb05] {
    flex-shrink: 0;
}

.forgot-password-link a[b-k1x6eenb05] {
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition: color 0.2s ease;
}

.forgot-password-link a:hover[b-k1x6eenb05] {
    color: #93c5fd;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {
    .login-page[b-k1x6eenb05] {
        height: 100svh;
        min-height: 100svh;

        align-items: flex-start;

        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: calc(140px + env(safe-area-inset-bottom));

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;

        box-sizing: border-box;
    }

    .login-card[b-k1x6eenb05] {
        padding: 26px 22px;
        border-radius: 20px;

        margin-bottom: 70px;
    }

    .login-brand[b-k1x6eenb05] {
        margin-bottom: 22px;
    }

    .brand-badge[b-k1x6eenb05] {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .login-brand h1[b-k1x6eenb05] {
        font-size: 25px;
    }

    .login-brand p[b-k1x6eenb05] {
        font-size: 13px;
    }

    .form-group[b-k1x6eenb05] {
        margin-bottom: 16px;
    }

    [b-k1x6eenb05] input.login-input {
        height: 52px !important;
        font-size: 16px !important;
    }

    .login-btn[b-k1x6eenb05] {
        height: 52px;
    }

    .login-success-message[b-k1x6eenb05],
    .login-error-message[b-k1x6eenb05] {
        margin-top: 14px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .register-link[b-k1x6eenb05] {
        margin-top: 22px;
        padding-bottom: 30px;
    }

    .login-options[b-k1x6eenb05] {
        gap: 10px;
        margin-top: -4px;
        margin-bottom: 16px;
    }

    .remember-email[b-k1x6eenb05],
    .forgot-password-link a[b-k1x6eenb05] {
        font-size: 13px;
    }

    [b-k1x6eenb05] input.remember-checkbox {
        width: 16px;
        height: 16px;
    }
}
/* _content/TradingJournal/Components/Pages/Register.razor.rz.scp.css */
.register-page[b-riox515po4] {
    min-height: 100vh;
    background: #080d16;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

.register-card[b-riox515po4] {
    width: 100%;
    max-width: 480px;

    background: #0f1722;

    border: 1px solid #1f2937;
    border-radius: 22px;

    padding: 42px;

    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.register-brand[b-riox515po4] {
    text-align: center;
    margin-bottom: 28px;
}

.register-brand h1[b-riox515po4] {
    margin: 0;

    color: #f8fafc;

    font-size: 30px;
    font-weight: 600;
}

.register-brand p[b-riox515po4] {
    margin-top: 8px;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.6;
}

.form-group[b-riox515po4] {
    margin-bottom: 18px;
}

.form-group label[b-riox515po4] {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

.input-wrapper[b-riox515po4] {
    position: relative;
    width: 100%;
}

[b-riox515po4] .input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #64748b;

    pointer-events: none;
    z-index: 2;
}

[b-riox515po4] input.register-input {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 54px !important;

    box-sizing: border-box !important;

    background: #111827 !important;

    border: 1px solid #273449 !important;
    border-radius: 14px !important;

    color: #f8fafc !important;

    font-size: 16px !important;

    outline: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    transition: .2s;
}

[b-riox515po4] input.register-input.with-left-icon {
    padding-left: 52px !important;
}

[b-riox515po4] input.register-input.password-input {
    padding-right: 54px !important;
}

[b-riox515po4] input.register-input::placeholder {
    color: #64748b !important;
}

[b-riox515po4] input.register-input:focus {
    background: #111827 !important;

    border-color: #3b82f6 !important;

    box-shadow: 0 0 0 3px rgba(59, 130, 246, .18) !important;
}

[b-riox515po4] input.register-input:-webkit-autofill,
[b-riox515po4] input.register-input:-webkit-autofill:hover,
[b-riox515po4] input.register-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc !important;
    box-shadow: 0 0 0 1000px #111827 inset !important;
    border: 1px solid #273449 !important;
}

.eye-btn[b-riox515po4] {
    position: absolute;

    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    padding: 0;
    margin: 0;

    color: #94a3b8;

    cursor: pointer;

    z-index: 3;
}

.eye-btn:hover[b-riox515po4] {
    color: white;
}

.register-btn[b-riox515po4] {
    width: 100%;
    height: 54px;

    margin-top: 6px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #2563eb, #4f46e5);

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.register-btn:hover[b-riox515po4] {
    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(37, 99, 235, .25);
}

.register-success-message[b-riox515po4],
.register-error-message[b-riox515po4] {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.register-success-message[b-riox515po4] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-error-message[b-riox515po4] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #f87171;
}

.success-icon[b-riox515po4] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.login-link[b-riox515po4] {
    margin-top: 24px;

    text-align: center;
}

.login-link span[b-riox515po4] {
    color: #94a3b8;
}

.login-link a[b-riox515po4] {
    margin-left: 6px;

    color: #60a5fa;

    font-weight: 700;

    text-decoration: none;
}

.login-link a:hover[b-riox515po4] {
    color: #93c5fd;
}

/* =========================
   EMAIL VERIFICATION CODE
========================= */

[b-riox515po4] input.register-input.email-code-input {
    padding-right: 124px !important;
}

.send-code-btn[b-riox515po4] {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    min-width: 98px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
    z-index: 3;
}

.send-code-btn:hover:not(:disabled)[b-riox515po4] {
    color: #93c5fd;
}

.send-code-btn:disabled[b-riox515po4] {
    opacity: 0.75;
    cursor: not-allowed;
}

.code-sent-message[b-riox515po4] {
    margin-top: 8px;
    color: #4ade80;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.code-expired-message[b-riox515po4] {
    margin-top: 8px;
    color: #fbbf24;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.register-btn:disabled[b-riox515po4] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.register-btn:disabled:hover[b-riox515po4] {
    transform: none;
    box-shadow: none;
}

/* =========================
   VERIFICATION CODE
========================= */

.verification-code-wrapper[b-riox515po4] {
    position: relative;
    width: 100%;
}

.verification-code-boxes[b-riox515po4] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    pointer-events: none;
}

.verification-code-box[b-riox515po4] {
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 10px;

    color: #f8fafc;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.verification-code-box.filled[b-riox515po4] {
    border-color: #475569;
    background: #111827;
}

.verification-code-box.active[b-riox515po4] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.verification-code-hidden-input[b-riox515po4] {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    opacity: 0;
    cursor: text;

    border: 0;
    outline: none;
}

@media (max-width: 768px) {
    .register-page[b-riox515po4] {
        height: 100svh;
        min-height: 100svh;

        align-items: flex-start;

        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: calc(150px + env(safe-area-inset-bottom));

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .register-card[b-riox515po4] {
        max-width: 450px;
        padding: 24px 22px;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .register-brand[b-riox515po4] {
        margin-bottom: 26px;
    }

    .register-brand h1[b-riox515po4] {
        font-size: 24px;
    }

    .register-brand p[b-riox515po4] {
        font-size: 13px;
    }

    .form-group[b-riox515po4] {
        margin-bottom: 14px;
    }

    [b-riox515po4] input.register-input {
        height: 50px !important;
        font-size: 16px !important;
    }

    .register-btn[b-riox515po4] {
        height: 50px;
    }

    .register-success-message[b-riox515po4],
    .register-error-message[b-riox515po4] {
        margin-top: 14px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .login-link[b-riox515po4] {
        margin-top: 22px;
        padding-bottom: 30px;
    }

    [b-riox515po4] input.register-input.email-code-input {
        padding-right: 112px !important;
    }

    .send-code-btn[b-riox515po4] {
        right: 6px;

        min-width: 88px;
        height: 36px;

        padding: 0 9px;

        font-size: 12px;
        border-radius: 9px;
    }

    .code-sent-message[b-riox515po4] {
        margin-top: 7px;
        font-size: 12px;
    }

    .verification-code-boxes[b-riox515po4] {
        gap: 7px;
    }

    .verification-code-box[b-riox515po4] {
        height: 52px;
        border-radius: 9px;
        font-size: 22px;
    }
}
/* _content/TradingJournal/Components/Pages/Review.razor.rz.scp.css */
/* =========================
   REVIEW PAGE
========================= */
.review-page[b-ytzjnpk80w] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: #080d16;
    color: #f8fafc;

    padding: 20px 28px 28px;
    gap: 22px;
}

/* =========================
   SELECTED TRADE CARD
========================= */
.selected-trade-card[b-ytzjnpk80w] {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 18px 20px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    color: #f8fafc;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.view-all-btn[b-ytzjnpk80w] {
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    padding: 9px 14px;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.view-all-btn:hover[b-ytzjnpk80w] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

/* =========================
   FILTER CARD
========================= */
.filter-card[b-ytzjnpk80w] {
    flex-shrink: 0;

    padding: 24px 26px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.filter-row[b-ytzjnpk80w] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 0;
    align-items: end;
}

.filter-item[b-ytzjnpk80w] {
    max-width: none;
    width: 100%;
}

.filter-item label[b-ytzjnpk80w] {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #f8fafc;
}

/* MudBlazor dark filter */
[b-ytzjnpk80w] .mobile-filter .mud-input {
    background: #08111f !important;
    color: #f8fafc !important;
    border-radius: 10px !important;
}

[b-ytzjnpk80w] .mobile-filter .mud-input-outlined-border {
    border-color: #334155 !important;
}

[b-ytzjnpk80w] .mobile-filter:hover .mud-input-outlined-border {
    border-color: #475569 !important;
}

[b-ytzjnpk80w] .mobile-filter .mud-input-slot,
[b-ytzjnpk80w] .mobile-filter input,
[b-ytzjnpk80w] .mobile-filter .mud-select-input {
    color: #f8fafc !important;
}

[b-ytzjnpk80w] .mobile-filter svg {
    color: #cbd5e1 !important;
}

.mobile-review-list[b-ytzjnpk80w] {
    display: none;
}

/* =========================
   TABLE WRAPPER
========================= */
.table-wrapper[b-ytzjnpk80w] {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;

    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    width: 100%;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

    padding-bottom: 80px;
}

/* =========================
   TABLE BASE
========================= */
.mistake-table[b-ytzjnpk80w] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: transparent;
}

/* =========================
   STICKY HEADER
========================= */
.mistake-table thead th[b-ytzjnpk80w] {
    position: sticky;
    top: 0;
    z-index: 10;

    background: #111827;
    color: #f8fafc;

    font-size: 14px;
    font-weight: 600;

    padding: 18px 20px;
    text-align: left;

    border-bottom: 1px solid #1f2937;
}

/* =========================
   TABLE BODY
========================= */
.mistake-table td[b-ytzjnpk80w] {
    padding: 18px 20px;

    color: #e5e7eb;
    font-size: 14px;

    border-bottom: 1px solid #1f2937;
}

.mistake-table tbody tr:hover[b-ytzjnpk80w] {
    background: rgba(37, 99, 235, 0.08);
}

/* =========================
   EMPTY STATE
========================= */
.empty-state[b-ytzjnpk80w] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 80px 20px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    color: #94a3b8;
}

.empty-state h3[b-ytzjnpk80w] {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 22px;
}

.empty-state p[b-ytzjnpk80w] {
    margin: 0;
    font-size: 14px;
}

/* =========================
   STATUS BADGE
========================= */
.status-badge[b-ytzjnpk80w] {
    width: 72px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
}

.status-badge.win[b-ytzjnpk80w] {
    background-color: #E5F4EA;
    color: #16A34A;
}

.status-badge.loss[b-ytzjnpk80w] {
    background-color: #F7E5E5;
    color: #E53935;
}

.status-badge.be[b-ytzjnpk80w] {
    background-color: #ECEFF1;
    color: #607D8B;
}

/* =========================
   TEXT COLORS
========================= */
.text-buy[b-ytzjnpk80w] {
    color: #22c55e !important;
    font-weight: 700;
}

.text-sell[b-ytzjnpk80w] {
    color: #ef4444 !important;
    font-weight: 700;
}

/* =========================
   DESCRIPTION LINK
========================= */
.desc-link[b-ytzjnpk80w] {
    border: none;
    background: transparent;
    color: #93c5fd;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.desc-link:hover[b-ytzjnpk80w] {
    color: #bfdbfe;
}

/* =========================
   ACTION BUTTONS
========================= */
.action-buttons[b-ytzjnpk80w] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-btn[b-ytzjnpk80w],
.edit-btn[b-ytzjnpk80w] {
    width: 34px;
    height: 34px;

    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn[b-ytzjnpk80w]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #ef4444;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M6 6l1 14h10l1-14'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M6 6l1 14h10l1-14'/%3E%3C/svg%3E");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.edit-btn[b-ytzjnpk80w]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #60a5fa;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5l4 4L7 21l-4 1 1-4 12.5-12.5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5l4 4L7 21l-4 1 1-4 12.5-12.5z'/%3E%3C/svg%3E");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

/* =========================
   MODAL BACKDROP
========================= */
.modal-backdrop[b-ytzjnpk80w] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(3px);
    z-index: 4000;
}

/* =========================
   MODAL BOX
========================= */
.modal-box[b-ytzjnpk80w] {
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 500px;
    max-width: 95vw;

    max-height: 90vh;
    overflow-y: auto;

    background: white;
    color: #111827;

    padding: 28px;

    border-radius: 18px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15),
        0 8px 16px rgba(0, 0, 0, .08);

    z-index: 4001;
}

.modal-box h3[b-ytzjnpk80w] {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

/* =========================
   FORM ELEMENTS
========================= */
.modal-box label[b-ytzjnpk80w] {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.modal-box input[b-ytzjnpk80w],
.modal-box select[b-ytzjnpk80w],
.modal-box textarea[b-ytzjnpk80w] {
    width: 100%;
    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    background: #f8fafc;
    color: #111827;

    font-size: 16px;

    transition: all .2s ease;
}

.modal-box input:focus[b-ytzjnpk80w],
.modal-box select:focus[b-ytzjnpk80w],
.modal-box textarea:focus[b-ytzjnpk80w] {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .15);
}

.modal-box textarea[b-ytzjnpk80w] {
    min-height: 120px;
    resize: vertical;
}

/* =========================
   ROW LAYOUT
========================= */
.modal-box .row[b-ytzjnpk80w] {
    margin-bottom: 22px;
}

/* =========================
   MODAL ACTIONS
========================= */
.modal-actions[b-ytzjnpk80w] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.save[b-ytzjnpk80w] {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    border: none;
    border-radius: 10px;

    padding: 12px 20px;
    font-weight: 600;

    cursor: pointer;

    width: 100px;
    transition: .2s;
}

.save:hover[b-ytzjnpk80w] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.cancel[b-ytzjnpk80w] {
    background: #e5e7eb;
    color: #374151;

    border: none;
    border-radius: 10px;

    padding: 12px 20px;
    font-weight: 600;

    cursor: pointer;

    width: 100px;
    transition: .2s;
}

.cancel:hover[b-ytzjnpk80w] {
    background: #d1d5db;
}

.form-error[b-ytzjnpk80w] {
    margin-top: -15px;
    margin-bottom: 40px;
}

/* =========================
   MESSAGE
========================= */
.review-success-message[b-ytzjnpk80w],
.review-error-message[b-ytzjnpk80w] {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.review-success-message[b-ytzjnpk80w] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-error-message[b-ytzjnpk80w] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #dc2626;
}

.success-icon[b-ytzjnpk80w] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* =========================
   MISTAKE MODAL
========================= */
.mistake-hd[b-ytzjnpk80w] {
    background: #eaf2ff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mistake-desc[b-ytzjnpk80w] {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    line-height: 1.2;
    height: 32px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.description-view[b-ytzjnpk80w] {
    min-height: 90px;
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #111827;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.delete-preview[b-ytzjnpk80w] {
    margin-top: 12px;
    text-align: left;
    padding: 8px;
    color: black;
}

.sort-header[b-ytzjnpk80w] {
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sort-icon[b-ytzjnpk80w] {
    font-size: 18px;
    margin-left: 2px;
    vertical-align: middle;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .review-page[b-ytzjnpk80w] {
        padding: 14px;
        gap: 14px;
    }

    .filter-card[b-ytzjnpk80w] {
        padding: 16px;
        border-radius: 14px;
    }

    .filter-row[b-ytzjnpk80w] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .filter-item:first-child[b-ytzjnpk80w] {
        grid-column: 1 / 3;
    }

    .filter-item[b-ytzjnpk80w] {
        max-width: none;
        width: 100%;
    }

    .filter-item label[b-ytzjnpk80w] {
        font-size: 13px;
        margin-bottom: 4px;
    }

    [b-ytzjnpk80w] .mobile-filter .mud-input {
        height: 50px !important;
        min-height: 50px !important;
    }

    [b-ytzjnpk80w] .mobile-filter .mud-input-outlined {
        height: 50px !important;
        min-height: 50px !important;
    }

    [b-ytzjnpk80w] .mobile-filter .mud-input-slot {
        height: 50px !important;
        min-height: 50px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    [b-ytzjnpk80w] .mobile-filter input {
        height: 50px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        font-size: 17px !important;
    }

    [b-ytzjnpk80w] .mobile-filter .mud-select-input {
        height: 50px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        font-size: 16px !important;
    }

    .table-wrapper[b-ytzjnpk80w] {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;

        overflow-y: auto;
        overflow-x: auto;

        padding-bottom: 160px;
    }

    .desktop-review-table[b-ytzjnpk80w] {
        display: none;
    }

    .mobile-review-list[b-ytzjnpk80w] {
        flex: 1 1 auto;
        min-height: 0;

        display: flex;
        flex-direction: column;
        gap: 12px;

        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 90px;
    }

    .mobile-sort-row[b-ytzjnpk80w] {
        display: flex;
        justify-content: flex-end;
    }

    .review-card[b-ytzjnpk80w] {
        flex-shrink: 0;

        padding: 14px;

        border-radius: 14px;
        border: 1px solid #1f2937;

        background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    }

    .review-card-top[b-ytzjnpk80w] {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;

        margin-bottom: 10px;
    }

    .review-date[b-ytzjnpk80w] {
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 4px;
    }

    .review-symbol[b-ytzjnpk80w] {
        font-size: 15px;
        color: #f8fafc;
    }

    .review-card-mid[b-ytzjnpk80w] {
        display: flex;
        justify-content: space-between;
        gap: 12px;

        font-size: 13px;
        color: #cbd5e1;

        margin-bottom: 10px;
    }

    .review-desc-row[b-ytzjnpk80w] {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .review-card-actions[b-ytzjnpk80w] {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .selected-trade-card[b-ytzjnpk80w] {
        padding: 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .view-all-btn[b-ytzjnpk80w] {
        padding: 8px 12px;
        font-size: 12px;
    }

    .review-success-message[b-ytzjnpk80w],
    .review-error-message[b-ytzjnpk80w] {
        font-size: 12px;
        padding: 12px 14px;
    }

    .success-icon[b-ytzjnpk80w] {
        width: 22px;
        height: 22px;
    }

    .modal-box[b-ytzjnpk80w] {
        width: 90vw;
        max-width: 90vw;
        padding: 18px;
        border-radius: 14px;
        max-height: 88vh;
    }

    .modal-box h3[b-ytzjnpk80w] {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .modal-box input[b-ytzjnpk80w],
    .modal-box select[b-ytzjnpk80w],
    .modal-box textarea[b-ytzjnpk80w] {
        padding: 10px 12px;
        font-size: 16px;
    }

    .modal-box textarea[b-ytzjnpk80w] {
        min-height: 90px;
    }

    .modal-actions[b-ytzjnpk80w] {
        margin-top: 20px;
        gap: 8px;
    }

    .mistake-hd[b-ytzjnpk80w] {
        font-size: 13px;
    }

    .save[b-ytzjnpk80w],
    .cancel[b-ytzjnpk80w] {
        flex: 1;
        width: auto;
        padding: 10px;
    }
}
/* _content/TradingJournal/Components/Pages/Setting.razor.rz.scp.css */
.setting-page[b-a11dpoe1cy] {
    flex: 1;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 24px;
    padding-bottom: 70px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    background: #080d16;
    color: #f8fafc;
}

.setting-card[b-a11dpoe1cy] {
    width: 100%;
    max-width: 760px;
    margin: 0;
    background: #0f1722;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.setting-section[b-a11dpoe1cy] {
    background: #111827;
    border: 1px solid #293548;
    border-radius: 12px;
    padding: 22px;
}

.setting-section+.setting-section[b-a11dpoe1cy] {
    margin-top: 24px;
}

.card-header[b-a11dpoe1cy] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.card-header h3[b-a11dpoe1cy] {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    color: #f8fafc;
}

.card-header p[b-a11dpoe1cy] {
    margin: 4px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.form-group[b-a11dpoe1cy] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    max-width: 420px;
}

.form-group label[b-a11dpoe1cy] {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

.setting-input[b-a11dpoe1cy] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #111827;
    color: #f8fafc;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.2s;
}

.setting-input[b-a11dpoe1cy]::placeholder {
    color: #64748b;
}

.setting-input:focus[b-a11dpoe1cy] {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.setting-btn[b-a11dpoe1cy] {
    width: 420px;
    max-width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.setting-btn:hover[b-a11dpoe1cy] {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.setting-btn:active[b-a11dpoe1cy] {
    transform: scale(0.98);
}

.input-wrapper[b-a11dpoe1cy] {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.password-input[b-a11dpoe1cy] {
    padding-right: 46px;
}

.eye-btn[b-a11dpoe1cy] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-btn:hover[b-a11dpoe1cy] {
    color: #f8fafc;
}

.setting-success-message[b-a11dpoe1cy],
.setting-error-message[b-a11dpoe1cy] {
    margin-top: 14px;
    width: 420px;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.setting-success-message[b-a11dpoe1cy] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-error-message[b-a11dpoe1cy] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #f87171;
}

.success-icon[b-a11dpoe1cy] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .setting-page[b-a11dpoe1cy] {
        padding: 20px 16px 90px;
    }

    .setting-card[b-a11dpoe1cy] {
        max-width: 100%;
        padding: 16px;
        border-radius: 10px;
    }

    .setting-section[b-a11dpoe1cy] {
        padding: 16px;
    }

    .setting-section+.setting-section[b-a11dpoe1cy] {
        margin-top: 18px;
    }

    .card-header[b-a11dpoe1cy] {
        gap: 12px;
        margin-bottom: 20px;
    }

    .card-header h3[b-a11dpoe1cy] {
        font-size: 18px;
    }

    .form-group[b-a11dpoe1cy] {
        max-width: 320px;
    }

    .setting-success-message[b-a11dpoe1cy],
    .setting-error-message[b-a11dpoe1cy] {
        width: 320px;
        font-size: 12px;
    }

    .setting-input[b-a11dpoe1cy] {
        height: 52px;
        font-size: 16px;
    }

    .setting-btn[b-a11dpoe1cy] {
        width: 320px;
        height: 48px;
        font-size: 14px;
    }
}
/* _content/TradingJournal/Components/Pages/Trade.razor.rz.scp.css */
/* =========================
   TRADE PAGE
========================= */
.trade-page[b-7ehz8xkx0q] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: #080d16;
    color: #f8fafc;

    padding: 20px 28px 28px;
    gap: 22px;
}

.selected-trade-card[b-7ehz8xkx0q] {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 18px 20px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    color: #f8fafc;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.view-all-btn[b-7ehz8xkx0q] {
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    padding: 9px 14px;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.view-all-btn:hover[b-7ehz8xkx0q] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

/* =========================
   FLOATING ADD BUTTON
========================= */
.add-fab[b-7ehz8xkx0q] {
    display: flex;
    position: fixed;
    right: 42px;
    bottom: calc(28px + env(safe-area-inset-bottom));

    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    font-size: 34px;
    font-weight: 300;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.35);

    z-index: 5000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add-fab:hover[b-7ehz8xkx0q] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.add-fab:active[b-7ehz8xkx0q] {
    transform: scale(0.94);
}

/* =========================
   FILTER CARD
========================= */
.filter-card[b-7ehz8xkx0q] {
    flex-shrink: 0;

    padding: 24px 26px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.filter-row[b-7ehz8xkx0q] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 0;
    align-items: end;
}

.filter-item[b-7ehz8xkx0q] {
    max-width: none;
    width: 100%;
}

.filter-item label[b-7ehz8xkx0q] {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #f8fafc;
}

/* MudBlazor dark filter */
[b-7ehz8xkx0q] .mobile-filter .mud-input {
    background: #08111f !important;
    color: #f8fafc !important;
    border-radius: 10px !important;
}

[b-7ehz8xkx0q] .mobile-filter .mud-input-outlined-border {
    border-color: #334155 !important;
}

[b-7ehz8xkx0q] .mobile-filter:hover .mud-input-outlined-border {
    border-color: #475569 !important;
}

[b-7ehz8xkx0q] .mobile-filter .mud-input-slot,
[b-7ehz8xkx0q] .mobile-filter input,
[b-7ehz8xkx0q] .mobile-filter .mud-select-input {
    color: #f8fafc !important;
}

[b-7ehz8xkx0q] .mobile-filter svg {
    color: #cbd5e1 !important;
}

/* =========================
   TABLE WRAPPER
========================= */
.table-wrapper[b-7ehz8xkx0q] {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;

    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    width: 100%;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

    padding-bottom: 80px;
}

/* =========================
   TABLE BASE
========================= */
.trans-table[b-7ehz8xkx0q] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: transparent;
}

/* =========================
   STICKY HEADER
========================= */
.trans-table thead th[b-7ehz8xkx0q] {
    position: sticky;
    top: 0;
    z-index: 10;

    background: #111827;
    color: #f8fafc;

    font-size: 14px;
    font-weight: 600;

    padding: 18px 20px;
    text-align: left;

    border-bottom: 1px solid #1f2937;
}

/* =========================
   TABLE BODY
========================= */
.trans-table td[b-7ehz8xkx0q] {
    padding: 18px 20px;

    color: #e5e7eb;
    font-size: 14px;

    border-bottom: 1px solid #1f2937;
}

.trans-table tbody tr:hover[b-7ehz8xkx0q] {
    background: rgba(37, 99, 235, 0.08);
}

/* =========================
   EMPTY STATE
========================= */
.empty-state[b-7ehz8xkx0q] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 80px 20px;

    border-radius: 16px;
    border: 1px solid #1f2937;

    background: linear-gradient(180deg, #0f1722 0%, #08111f 100%);

    color: #94a3b8;
}

.empty-state h3[b-7ehz8xkx0q] {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 22px;
}

.empty-state p[b-7ehz8xkx0q] {
    margin: 0;
    font-size: 14px;
}

/* =========================
   STATUS BADGE
========================= */
.status-badge[b-7ehz8xkx0q] {
    width: 72px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
}

.status-badge.win[b-7ehz8xkx0q] {
    background-color: #E5F4EA;
    color: #16A34A;
}

.status-badge.loss[b-7ehz8xkx0q] {
    background-color: #F7E5E5;
    color: #E53935;
}

.status-badge.be[b-7ehz8xkx0q] {
    background-color: #ECEFF1;
    color: #607D8B;
}

/* =========================
   TEXT COLORS
========================= */
.trans-table td.text-win[b-7ehz8xkx0q] {
    color: #22c55e;
    font-weight: 700;
}

.trans-table td.text-loss[b-7ehz8xkx0q] {
    color: #ef4444;
    font-weight: 700;
}

.trans-table td.text-be[b-7ehz8xkx0q] {
    color: #94a3b8;
    font-weight: 700;
}

.text-buy[b-7ehz8xkx0q] {
    color: #22c55e !important;
    font-weight: 700;
}

.text-sell[b-7ehz8xkx0q] {
    color: #ef4444 !important;
    font-weight: 700;
}

/* =========================
   MISTAKE BADGE
========================= */
/* =========================
   MISTAKE BADGE
========================= */
.mistake-badge[b-7ehz8xkx0q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 52px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #93c5fd;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all .2s ease;
}

.mistake-badge:hover[b-7ehz8xkx0q] {
    background: rgba(59, 130, 246, 0.25);
    opacity: 1;
}

.mistake-badge-disabled[b-7ehz8xkx0q] {
    cursor: default;
    opacity: .6;
}

[b-7ehz8xkx0q] .mistake-open-icon {
    font-size: 18px !important;
    opacity: 1;
}

/* =========================
   ACTION BUTTONS
========================= */
.action-buttons[b-7ehz8xkx0q] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-btn[b-7ehz8xkx0q],
.edit-btn[b-7ehz8xkx0q],
.mistake-btn[b-7ehz8xkx0q],
.mistake-done-btn[b-7ehz8xkx0q] {
    width: 34px;
    height: 34px;

    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn[b-7ehz8xkx0q]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #ef4444;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M6 6l1 14h10l1-14'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M6 6l1 14h10l1-14'/%3E%3C/svg%3E");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.edit-btn[b-7ehz8xkx0q]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #60a5fa;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5l4 4L7 21l-4 1 1-4 12.5-12.5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5l4 4L7 21l-4 1 1-4 12.5-12.5z'/%3E%3C/svg%3E");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.mistake-btn[b-7ehz8xkx0q]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #f59e0b;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18A2 2 0 0 0 3.5 21h17a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='8' x2='12' y2='13'/%3E%3Ccircle cx='12' cy='17' r='1.2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18A2 2 0 0 0 3.5 21h17a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='8' x2='12' y2='13'/%3E%3Ccircle cx='12' cy='17' r='1.2'/%3E%3C/svg%3E");

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.mistake-done-btn[b-7ehz8xkx0q]::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 20px;

    background-color: #22c55e;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M5 13l4 4L19 7"/%3E%3C/svg%3E');

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

/* =========================
   MODAL BACKDROP
========================= */
.modal-backdrop[b-7ehz8xkx0q] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(3px);
    z-index: 4000;
}

/* =========================
   MODAL BOX
========================= */
.modal-box[b-7ehz8xkx0q] {
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 500px;
    max-width: 95vw;

    max-height: 90vh;
    overflow-y: auto;

    background: white;
    color: #111827;

    padding: 28px;

    border-radius: 18px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15),
        0 8px 16px rgba(0, 0, 0, .08);

    z-index: 4001;
}

.modal-box h3[b-7ehz8xkx0q] {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

/* =========================
   FORM ELEMENTS
========================= */
.modal-box label[b-7ehz8xkx0q] {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.modal-box input[b-7ehz8xkx0q],
.modal-box select[b-7ehz8xkx0q],
.modal-box textarea[b-7ehz8xkx0q] {
    width: 100%;
    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    background: #f8fafc;
    color: #111827;

    font-size: 16px;

    transition: all .2s ease;
}

.modal-box input:focus[b-7ehz8xkx0q],
.modal-box select:focus[b-7ehz8xkx0q],
.modal-box textarea:focus[b-7ehz8xkx0q] {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .15);
}

.modal-box textarea[b-7ehz8xkx0q] {
    min-height: 120px;
    resize: vertical;
}

/* =========================
   ROW LAYOUT
========================= */
.modal-box .row[b-7ehz8xkx0q] {
    margin-bottom: 22px;
}

.two-col[b-7ehz8xkx0q] {
    display: flex;
    gap: 18px;
}

.two-col>div[b-7ehz8xkx0q] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =========================
   MODAL ACTIONS
========================= */
.modal-actions[b-7ehz8xkx0q] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.save[b-7ehz8xkx0q] {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;

    border: none;
    border-radius: 10px;

    padding: 12px 20px;
    font-weight: 600;

    cursor: pointer;

    width: 100px;
    transition: .2s;
}

.save:hover[b-7ehz8xkx0q] {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.cancel[b-7ehz8xkx0q] {
    background: #e5e7eb;
    color: #374151;

    border: none;
    border-radius: 10px;

    padding: 12px 20px;
    font-weight: 600;

    cursor: pointer;

    width: 100px;
    transition: .2s;
}

.cancel:hover[b-7ehz8xkx0q] {
    background: #d1d5db;
}

/* =========================
   MESSAGE
========================= */
.trade-success-message[b-7ehz8xkx0q],
.trade-error-message[b-7ehz8xkx0q] {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
}

.trade-success-message[b-7ehz8xkx0q] {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trade-error-message[b-7ehz8xkx0q] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #dc2626;
}

.success-icon[b-7ehz8xkx0q] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* =========================
   ADD / EDIT FORM LAYOUT
========================= */
.ticket-header[b-7ehz8xkx0q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.ticket-row[b-7ehz8xkx0q] {
    margin-bottom: 12px;
}

.ticket-grid[b-7ehz8xkx0q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

/* =========================
   MISTAKE MODAL
========================= */
.mistake-hd[b-7ehz8xkx0q] {
    background: #eaf2ff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mistake-card[b-7ehz8xkx0q] {
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
    padding: 12px;
    border-radius: 10px;
    background: white;
}

.mistake-desc[b-7ehz8xkx0q] {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    line-height: 1.2;
    height: 32px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.add-mistake-btn[b-7ehz8xkx0q] {
    border: 1px dashed #93c5fd;
    background: #eff6ff;
    color: #2563eb;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.sort-header[b-7ehz8xkx0q] {
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sort-icon[b-7ehz8xkx0q] {
    font-size: 18px;
    margin-left: 2px;
    vertical-align: middle;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .trade-page[b-7ehz8xkx0q] {
        padding: 14px;
        gap: 14px;
    }

    .filter-card[b-7ehz8xkx0q] {
        padding: 16px;
        border-radius: 14px;
    }

    .filter-row[b-7ehz8xkx0q] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .filter-item:first-child[b-7ehz8xkx0q] {
        grid-column: 1 / 3;
    }

    .filter-item[b-7ehz8xkx0q] {
        max-width: none;
        width: 100%;
    }

    .filter-item label[b-7ehz8xkx0q] {
        font-size: 13px;
        margin-bottom: 4px;
    }

    [b-7ehz8xkx0q] .mobile-filter .mud-input {
        height: 50px !important;
        min-height: 50px !important;
    }

    [b-7ehz8xkx0q] .mobile-filter .mud-input-outlined {
        height: 50px !important;
        min-height: 50px !important;
    }

    [b-7ehz8xkx0q] .mobile-filter .mud-input-slot {
        height: 50px !important;
        min-height: 50px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    [b-7ehz8xkx0q] .mobile-filter input {
        height: 50px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        font-size: 17px !important;
    }

    [b-7ehz8xkx0q] .mobile-filter .mud-select-input {
        height: 50px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        font-size: 16px !important;
    }

    .table-wrapper[b-7ehz8xkx0q] {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;

        overflow-y: auto;
        overflow-x: auto;

        padding-bottom: 160px;
    }

    .trans-table[b-7ehz8xkx0q] {
        font-size: 13px;
    }

    .trans-table thead th[b-7ehz8xkx0q],
    .trans-table td[b-7ehz8xkx0q] {
        width: 92px;
        padding: 10px;
        text-align: left;
    }

    .trans-table thead th:last-child[b-7ehz8xkx0q],
    .trans-table td:last-child[b-7ehz8xkx0q] {
        width: 120px;
    }

    .add-fab[b-7ehz8xkx0q] {
        right: 18px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
        font-size: 30px;
    }

    .trade-success-message[b-7ehz8xkx0q],
    .trade-error-message[b-7ehz8xkx0q] {
        font-size: 12px;
        padding: 12px 14px;
    }

    .success-icon[b-7ehz8xkx0q] {
        width: 22px;
        height: 22px;
    }

    .two-col[b-7ehz8xkx0q] {
        display: flex;
        flex-direction: row;
        gap: 12px;
    }

    .two-col>div[b-7ehz8xkx0q] {
        flex: 1;
        min-width: 0;
    }

    .modal-box[b-7ehz8xkx0q] {
        width: 90vw;
        max-width: 90vw;
        padding: 18px;
        border-radius: 14px;
        max-height: 88vh;
    }

    .modal-box h3[b-7ehz8xkx0q] {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .modal-box input[b-7ehz8xkx0q],
    .modal-box select[b-7ehz8xkx0q],
    .modal-box textarea[b-7ehz8xkx0q] {
        padding: 10px 12px;
        font-size: 16px;
    }

    .modal-box textarea[b-7ehz8xkx0q] {
        min-height: 90px;
    }

    .modal-actions[b-7ehz8xkx0q] {
        margin-top: 20px;
        gap: 8px;
    }

    .mistake-hd[b-7ehz8xkx0q] {
        font-size: 13px;
    }

    .save[b-7ehz8xkx0q],
    .cancel[b-7ehz8xkx0q] {
        flex: 1;
        width: auto;
        padding: 10px;
    }

    .selected-trade-card[b-7ehz8xkx0q] {
        padding: 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .view-all-btn[b-7ehz8xkx0q] {
        padding: 8px 12px;
        font-size: 12px;
    }

    .mistake-badge[b-7ehz8xkx0q] {
        font-size: 13px;
    }
}
