/* /Pages/Admin.razor.rz.scp.css */
.admin-page[b-u1x9a49mzi] {
    padding: 28px 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.admin-header[b-u1x9a49mzi] {
    margin-bottom: 20px;
}

    .admin-header h1[b-u1x9a49mzi] {
        font-size: 2rem;
        font-weight: 800;
        color: #2c3e50;
        margin: 0 0 4px;
    }

.subtitle[b-u1x9a49mzi] {
    color: #5d6d7e;
    margin: 0 0 16px;
}

.admin-actions[b-u1x9a49mzi] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Status messages */
.status-msg[b-u1x9a49mzi] {
    padding: 14px 18px;
    border-radius: 10px;
    background: #e0f7f4;
    border: 1px solid #b2dfdb;
    color: #1a5c55;
    margin-bottom: 16px;
}

    .status-msg.error[b-u1x9a49mzi] {
        background: #fdecea;
        border-color: #f5c6cb;
        color: #721c24;
    }

/* ══════════════════════════════════════════
   DESKTOP TABLE  (hidden below 769px)
   ══════════════════════════════════════════ */
.table-wrap[b-u1x9a49mzi] {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.09);
}

.registrant-table[b-u1x9a49mzi] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.88rem;
}

/* Header row — yellow background, bold dark text */
.registrant-table thead tr[b-u1x9a49mzi] {
    background: #f9c714;
}

.registrant-table th[b-u1x9a49mzi] {
    padding: 12px 14px;
    text-align: left;
    font-weight: 800;
    color: #2c3e50;
    border: 1px solid #d4a800;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Body cells — full gridlines + word-wrap */
.registrant-table td[b-u1x9a49mzi] {
    padding: 10px 13px;
    border: 1px solid #dde3ee;
    color: #34495e;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 180px;
    vertical-align: top;
}

.registrant-table td.action-cell[b-u1x9a49mzi] {
    white-space: nowrap;
    max-width: none;
    text-align: center;
    vertical-align: middle;
}

.registrant-table th.action-col[b-u1x9a49mzi] {
    text-align: center;
}

/* Alternating rows */
.registrant-table tbody tr:nth-child(even) td[b-u1x9a49mzi] {
    background: #f8fdfc;
}

.registrant-table tbody tr:hover td[b-u1x9a49mzi] {
    background: #edfaf8;
}

/* ══════════════════════════════════════════
   MOBILE CARDS  (hidden above 768px)
   ══════════════════════════════════════════ */
.contestant-cards[b-u1x9a49mzi] {
    display: none;
}

.record-count[b-u1x9a49mzi] {
    margin-top: 10px;
    color: #7f8c9a;
    font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Hide table, show cards */
    .table-wrap[b-u1x9a49mzi] {
        display: none;
    }

    .contestant-cards[b-u1x9a49mzi] {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* Individual card */
    .contestant-card[b-u1x9a49mzi] {
        background: #e3f2fd;
        border: 1px solid #90caf9;
        border-radius: 14px;
        padding: 18px 16px 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .card-name[b-u1x9a49mzi] {
        font-size: 1.15rem;
        font-weight: 800;
        color: #1a3a5c;
        margin-bottom: 3px;
    }

    .card-registered[b-u1x9a49mzi] {
        font-size: 0.78rem;
        color: #5d7a95;
        margin-bottom: 14px;
        font-style: italic;
    }

    .card-fields[b-u1x9a49mzi] {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Each label-value pair */
    .card-field[b-u1x9a49mzi] {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .field-label[b-u1x9a49mzi] {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #1565c0;
    }

    .field-value[b-u1x9a49mzi] {
        font-size: 0.93rem;
        color: #2c3e50;
        word-break: break-word;
    }

    .card-actions[b-u1x9a49mzi] {
        margin-top: 14px;
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid #b3d4f5;
        padding-top: 12px;
    }

    /* Stack action buttons on small screens */
    .admin-header h1[b-u1x9a49mzi] {
        font-size: 1.5rem;
    }

    .admin-actions[b-u1x9a49mzi] {
        flex-direction: column;
    }

    .admin-actions .btn[b-u1x9a49mzi] {
        width: 100%;
    }
}
/* /Pages/AdminLogin.razor.rz.scp.css */
.admin-login-page[b-f4givgu0s9] {
    display: flex;
    justify-content: center;
    padding: 48px 16px;
}

.admin-login-card[b-f4givgu0s9] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    border-top: 5px solid #2ab8a8;
}

.admin-badge[b-f4givgu0s9] {
    display: inline-block;
    background: #e0f7f4;
    border: 1px solid #b2dfdb;
    color: #1a5c55;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

h1[b-f4givgu0s9] {
    font-size: 1.9rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 6px;
}

.subtitle[b-f4givgu0s9] {
    color: #5d6d7e;
    margin: 0 0 24px;
    font-size: 0.95rem;
}

.field[b-f4givgu0s9] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

label[b-f4givgu0s9] {
    font-weight: 600;
    color: #34495e;
    font-size: 0.9rem;
}

.input[b-f4givgu0s9] {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

    .input:focus[b-f4givgu0s9] {
        border-color: #2ab8a8;
        box-shadow: 0 0 0 3px rgba(42, 184, 168, 0.18);
    }

.status.error[b-f4givgu0s9] {
    margin: 12px 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #721c24;
    font-size: 0.9rem;
}

.actions[b-f4givgu0s9] {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn[b-f4givgu0s9] {
    border-radius: 10px;
    padding: 11px 22px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn.primary[b-f4givgu0s9] {
        background: #2ab8a8;
        color: white;
        flex: 1;
    }

        .btn.primary:hover:not(:disabled)[b-f4givgu0s9] { background: #22a397; }
        .btn.primary:disabled[b-f4givgu0s9] { opacity: 0.5; cursor: default; }

    .btn.ghost[b-f4givgu0s9] {
        background: transparent;
        border-color: #cfd8ee;
        color: #34495e;
    }

        .btn.ghost:hover[b-f4givgu0s9] { background: #f0faf9; }

@media (max-width: 480px) {
    .admin-login-card[b-f4givgu0s9] { padding: 24px 16px; }
    .actions[b-f4givgu0s9] { flex-direction: column; }
    .btn[b-f4givgu0s9] { width: 100%; }
}
/* /Pages/Index.razor.rz.scp.css */
.hero-banner[b-805oapx2hy] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 14px 24px 14px;
    text-align: center;
    border-radius: 0 0 28px 28px;
    margin: -16px -16px 0;
}

.hero-inner[b-805oapx2hy] {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-badge[b-805oapx2hy] {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #d6ccff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.hero-title[b-805oapx2hy] {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    margin: 0 0 8px;
    letter-spacing: 3px;
}

.event-details[b-805oapx2hy] {
    margin: 4px 0 12px;
    line-height: 1.7;
}

    .event-details p[b-805oapx2hy] {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.88rem;
        font-weight: 500;
        letter-spacing: 0.4px;
        margin: 1px 0;
    }

.hero-sub[b-805oapx2hy] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 0 auto 14px;
    line-height: 1.5;
}

.hero-btns[b-805oapx2hy] {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn[b-805oapx2hy] {
    padding: 9px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.18s ease;
    display: inline-block;
    cursor: pointer;
}

.cta-primary[b-805oapx2hy] {
    background: #2ab8a8;
    color: white;
    box-shadow: 0 4px 22px rgba(42, 184, 168, 0.45);
}

    .cta-primary:hover[b-805oapx2hy] {
        background: #22a397;
        transform: translateY(-2px);
        box-shadow: 0 7px 28px rgba(42, 184, 168, 0.55);
        color: white;
    }

.cta-outline[b-805oapx2hy] {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
}

    .cta-outline:hover[b-805oapx2hy] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.75);
        color: white;
    }

.lifts-section[b-805oapx2hy] {
    padding: 40px 16px 40px;
    text-align: center;
    background-image: url('/images/CindyBench1.jpg');
    background-size: cover;
    background-position: center top;
}

/* White text so it's readable over the photo */
.section-heading[b-805oapx2hy] {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0 0 8px;
}

.section-sub[b-805oapx2hy] {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    margin: 0 0 38px;
}

.lift-grid[b-805oapx2hy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.lift-card[b-805oapx2hy] {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 34px 20px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid transparent;
    text-align: center;
    backdrop-filter: blur(2px);
}

    .lift-card:hover[b-805oapx2hy] {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
    }

    .lift-card.bench[b-805oapx2hy]    { border-top-color: #6c63ff; color: #6c63ff; }
    .lift-card.curl[b-805oapx2hy]     { border-top-color: #e74c3c; color: #e74c3c; }
    .lift-card.deadlift[b-805oapx2hy] { border-top-color: #f39c12; color: #f39c12; }
    .lift-card.squat[b-805oapx2hy]    { border-top-color: #27ae60; color: #27ae60; }

    .lift-card h3[b-805oapx2hy] {
        font-size: 1.25rem;
        font-weight: 800;
        margin: 16px 0 8px;
        color: #2c3e50;
    }

    .lift-card p[b-805oapx2hy] {
        font-size: 0.88rem;
        color: #7f8c9a;
        line-height: 1.55;
        margin: 0;
    }

.lift-icon[b-805oapx2hy] {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .hero-title span[b-805oapx2hy] { display: block; }
    .hero-title[b-805oapx2hy] { font-size: 1.8rem; letter-spacing: 1px; }
    .hero-banner[b-805oapx2hy] { padding: 10px 16px 10px; margin: 0; }
    .hero-badge[b-805oapx2hy] { font-size: 0.65rem; letter-spacing: 1.5px; }
    .hero-sub[b-805oapx2hy] { font-size: 0.85rem; }
    .hero-btns[b-805oapx2hy] { flex-direction: column; align-items: center; }
    .cta-btn[b-805oapx2hy] { width: 100%; max-width: 280px; text-align: center; }
    .lift-grid[b-805oapx2hy] { grid-template-columns: 1fr; }
    .lifts-section[b-805oapx2hy] { padding: 24px 12px 24px; }
}
/* /Pages/Login.razor.rz.scp.css */
.login-page[b-1txku71p3m] {
    display: flex;
    justify-content: center;
    padding: 48px 16px;
}

.login-card[b-1txku71p3m] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    padding: 36px 32px;
    width: 100%;
    max-width: 440px;
}

    .login-card h1[b-1txku71p3m] {
        font-size: 2rem;
        font-weight: 800;
        color: #2c3e50;
        margin: 0 0 6px;
    }

.subtitle[b-1txku71p3m] {
    color: #5d6d7e;
    margin: 0 0 24px;
}

.field[b-1txku71p3m] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

label[b-1txku71p3m] {
    font-weight: 600;
    color: #34495e;
}

.input[b-1txku71p3m] {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

    .input:focus[b-1txku71p3m] {
        border-color: #2ab8a8;
        box-shadow: 0 0 0 3px rgba(42, 184, 168, 0.18);
    }

.status.error[b-1txku71p3m] {
    margin: 12px 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #721c24;
    font-size: 0.9rem;
}

.actions[b-1txku71p3m] {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn[b-1txku71p3m] {
    border-radius: 10px;
    padding: 11px 22px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn.primary[b-1txku71p3m] {
        background: #2ab8a8;
        color: white;
        flex: 1;
        justify-content: center;
    }

        .btn.primary:hover:not(:disabled)[b-1txku71p3m] { background: #22a397; }
        .btn.primary:disabled[b-1txku71p3m] { opacity: 0.5; cursor: default; }

    .btn.ghost[b-1txku71p3m] {
        background: transparent;
        border-color: #cfd8ee;
        color: #34495e;
    }

        .btn.ghost:hover[b-1txku71p3m] { background: #f0faf9; }

.register-hint[b-1txku71p3m] {
    margin-top: 20px;
    text-align: center;
    font-size: 0.88rem;
    color: #7f8c9a;
}

    .register-hint a[b-1txku71p3m] { color: #2ab8a8; }

@media (max-width: 480px) {
    .login-card[b-1txku71p3m] { padding: 24px 16px; }
    .actions[b-1txku71p3m] { flex-direction: column; }
    .btn[b-1txku71p3m] { width: 100%; justify-content: center; }
}
/* /Pages/Profile.razor.rz.scp.css */
.page[b-5zzidu0qyg] { padding: 30px 16px; }

.card[b-5zzidu0qyg] {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 28px;
}

h1[b-5zzidu0qyg] { margin: 0 0 6px; font-size: 2rem; color: #2c3e50; font-weight: 800; }

.subtitle[b-5zzidu0qyg] { margin: 0 0 18px; color: #5d6d7e; }

.readonly-block[b-5zzidu0qyg] {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 6px 12px;
    background: #f0faf9;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 4px;
}

.readonly-label[b-5zzidu0qyg] { font-weight: 700; color: #34495e; }
.readonly-value[b-5zzidu0qyg] { color: #2c3e50; }

.divider[b-5zzidu0qyg] { height: 1px; background: #e7ecf5; margin: 18px 0; }

.grid[b-5zzidu0qyg] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.field[b-5zzidu0qyg] { display: flex; flex-direction: column; gap: 6px; }
.field.wide[b-5zzidu0qyg] { grid-column: span 2; }

label[b-5zzidu0qyg] { font-weight: 600; color: #34495e; }

.input[b-5zzidu0qyg] {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

    .input:focus[b-5zzidu0qyg] {
        border-color: #2ab8a8;
        box-shadow: 0 0 0 3px rgba(42, 184, 168, 0.18);
    }

.lift-grid[b-5zzidu0qyg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.lift-pill[b-5zzidu0qyg] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f6ff;
    border: 1px solid #dbe4ff;
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
}

    .lift-pill input[b-5zzidu0qyg] { width: 18px; height: 18px; flex-shrink: 0; }

.validation-message[b-5zzidu0qyg] { color: #c0392b; font-size: 0.88rem; margin-top: 4px; }

.actions[b-5zzidu0qyg] {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn[b-5zzidu0qyg] {
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn.primary[b-5zzidu0qyg] { background: #2ab8a8; color: white; }
    .btn.primary:hover:not(:disabled)[b-5zzidu0qyg] { background: #22a397; }
    .btn.primary:disabled[b-5zzidu0qyg] { opacity: 0.5; cursor: default; }

    .btn.ghost[b-5zzidu0qyg] { background: transparent; border-color: #cfd8ee; color: #34495e; }
    .btn.ghost:hover[b-5zzidu0qyg] { background: #f0faf9; }

.status[b-5zzidu0qyg] {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid;
}

    .status.success[b-5zzidu0qyg] { background: #e0f7f4; border-color: #b2dfdb; color: #1a5c55; }
    .status.error[b-5zzidu0qyg]   { background: #fdecea; border-color: #f5c6cb; color: #721c24; }

@media (max-width: 720px) {
    .grid[b-5zzidu0qyg] { grid-template-columns: 1fr; }
    .field.wide[b-5zzidu0qyg] { grid-column: span 1; }
    .readonly-block[b-5zzidu0qyg] { grid-template-columns: 90px 1fr; }
    .actions[b-5zzidu0qyg] { flex-direction: column; }
    .btn[b-5zzidu0qyg] { width: 100%; }
}
/* /Pages/Registration.razor.rz.scp.css */
.page[b-f4tadn7wfy] {
    padding: 30px 16px;
}

.card[b-f4tadn7wfy] {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 28px;
}

h1[b-f4tadn7wfy] {
    margin: 0 0 6px 0;
    font-size: 2.2rem;
    color: #2c3e50;
}

.subtitle[b-f4tadn7wfy] {
    margin: 0 0 18px 0;
    color: #5d6d7e;
}

.grid[b-f4tadn7wfy] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.field[b-f4tadn7wfy] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field.wide[b-f4tadn7wfy] {
        grid-column: span 2;
    }

label[b-f4tadn7wfy] {
    font-weight: 600;
    color: #34495e;
}

.input[b-f4tadn7wfy] {
    border: 1px solid #d6dde8;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

    .input:focus[b-f4tadn7wfy] {
        border-color: #2ab8a8;
        box-shadow: 0 0 0 3px rgba(42, 184, 168, 0.18);
    }

/* Password fields — stacked vertically, left-aligned */
.password-container[b-f4tadn7wfy] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.password-item[b-f4tadn7wfy] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 420px;
    margin-bottom: 14px;
}

    .password-item:last-child[b-f4tadn7wfy] {
        margin-bottom: 0;
    }

.divider[b-f4tadn7wfy] {
    height: 1px;
    background: #e7ecf5;
    margin: 18px 0;
}

.lift-grid[b-f4tadn7wfy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.lift-pill[b-f4tadn7wfy] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f6ff;
    border: 1px solid #dbe4ff;
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
}

    .lift-pill input[b-f4tadn7wfy] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

.actions[b-f4tadn7wfy] {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn[b-f4tadn7wfy] {
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

    .btn.primary[b-f4tadn7wfy] {
        background: #2ab8a8;
        color: white;
    }

        .btn.primary:hover[b-f4tadn7wfy] {
            background: #22a397;
        }

    .btn.ghost[b-f4tadn7wfy] {
        background: transparent;
        border-color: #cfd8ee;
        color: #34495e;
    }

        .btn.ghost:hover[b-f4tadn7wfy] {
            background: #f0faf9;
        }

.status[b-f4tadn7wfy] {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #e0f7f4;
    border: 1px solid #b2dfdb;
    color: #1a5c55;
}

    .status.success[b-f4tadn7wfy] {
        background: #e0f7f4;
        border-color: #b2dfdb;
        color: #1a5c55;
    }

    .status.error[b-f4tadn7wfy] {
        background: #fdecea;
        border-color: #f5c6cb;
        color: #721c24;
    }

/* ── Mobile ── */
@media (max-width: 720px) {

    .grid[b-f4tadn7wfy] {
        grid-template-columns: 1fr;
    }

    .field.wide[b-f4tadn7wfy] {
        grid-column: span 1;
    }

    .password-item[b-f4tadn7wfy] {
        max-width: 100%;
    }

    .card[b-f4tadn7wfy] {
        padding: 20px 14px;
        border-radius: 10px;
    }

    h1[b-f4tadn7wfy] {
        font-size: 1.7rem;
    }

    .lift-grid[b-f4tadn7wfy] {
        grid-template-columns: 1fr 1fr;
    }

    .actions[b-f4tadn7wfy] {
        flex-direction: column;
    }

    .btn[b-f4tadn7wfy] {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .lift-grid[b-f4tadn7wfy] {
        grid-template-columns: 1fr;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-7hogjqztar] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-7hogjqztar] {
    flex: 1;
}

.sidebar[b-7hogjqztar] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-7hogjqztar] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-7hogjqztar]  a, .top-row .btn-link[b-7hogjqztar] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-7hogjqztar] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 767.98px) {
    .top-row:not(.auth)[b-7hogjqztar] {
        display: none;
    }

    .top-row.auth[b-7hogjqztar] {
        justify-content: space-between;
    }

    .top-row a[b-7hogjqztar], .top-row .btn-link[b-7hogjqztar] {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .page[b-7hogjqztar] {
        flex-direction: row;
    }

    .sidebar[b-7hogjqztar] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-7hogjqztar] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-7hogjqztar], article[b-7hogjqztar] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mtx7e3te96] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-mtx7e3te96] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-mtx7e3te96] {
    font-size: 1.1rem;
}

.oi[b-mtx7e3te96] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-mtx7e3te96] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-mtx7e3te96] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-mtx7e3te96] {
        padding-bottom: 1rem;
    }

    .nav-item[b-mtx7e3te96]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-mtx7e3te96]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-mtx7e3te96]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* Logout button — matches nav link appearance */
.btn-nav-logout[b-mtx7e3te96] {
    background: none;
    border: none;
    cursor: pointer;
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    font-size: 0.9rem;
    padding: 0 1rem;
    width: 100%;
    text-align: left;
}

    .btn-nav-logout:hover[b-mtx7e3te96] {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

@media (min-width: 768px) {
    .navbar-toggler[b-mtx7e3te96] {
        display: none;
    }

    .collapse[b-mtx7e3te96] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
