:root {
    --bg: #07111f;
    --bg-elevated: #0b1627;
    --surface: rgba(12, 22, 38, 0.82);
    --surface-strong: rgba(15, 29, 49, 0.96);
    --surface-soft: rgba(120, 168, 255, 0.08);
    --border: rgba(139, 179, 255, 0.16);
    --border-strong: rgba(139, 179, 255, 0.3);
    --text: #ecf3ff;
    --muted: #93a4c2;
    --green: #34d399;
    --red: #fb7185;
    --accent: #78a8ff;
    --accent-strong: #96c2ff;
    --shadow: 0 24px 80px rgba(2, 8, 18, 0.55);
    --glow: radial-gradient(circle at top, rgba(120, 168, 255, 0.22), transparent 36%), radial-gradient(circle at 85% 18%, rgba(52, 211, 153, 0.12), transparent 22%);
}

* {
    box-sizing: border-box;
}

html {
    background:
        radial-gradient(circle at top left, rgba(120, 168, 255, 0.12), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(52, 211, 153, 0.1), transparent 18%),
        linear-gradient(180deg, #09111d 0%, #07111f 52%, #050b14 100%);
    min-height: 100%;
}

body {
    background: transparent;
    color: var(--text);
    font-family: "SF Pro Display", "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: inherit;
}

.app-shell {
    min-height: 100vh;
    position: relative;
}

.app-shell-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: var(--glow);
    opacity: 0.9;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 18px 32px;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 31, 0.72);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
}

.brand-mark {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: 180ms ease;
}

.nav-link:hover {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.nav-auth-area {
    margin-left: auto;
}

.nav-cta,
.nav-ghost-btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #07111f;
    border: none;
    box-shadow: 0 14px 28px rgba(120, 168, 255, 0.22);
    cursor: pointer;
}

.nav-ghost-btn {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
}

.nav-cta:hover,
.nav-ghost-btn:hover,
.btn-primary:hover {
    transform: translateY(-1px);
}

.app-page-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 32px 0 56px;
}

.page-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.page-kicker {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.page-description {
    color: var(--muted);
    margin: 10px 0 0;
    max-width: 640px;
    font-size: 15px;
}

.page-meta {
    color: var(--muted);
    text-align: right;
    font-size: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.card,
.market-card,
.hero-panel {
    background: linear-gradient(180deg, rgba(14, 27, 46, 0.96) 0%, rgba(10, 20, 34, 0.94) 100%);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(15, 29, 49, 0.98) 0%, rgba(10, 20, 34, 0.94) 100%),
        radial-gradient(circle at top right, rgba(120, 168, 255, 0.12), transparent 30%);
}

.market-card {
    position: relative;
    overflow: hidden;
    min-height: 144px;
}

.market-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -30px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(120, 168, 255, 0.2), transparent 70%);
}

.metric-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.metric-change {
    font-size: 15px;
    font-weight: 600;
}

.price-up {
    color: var(--green);
}

.price-down {
    color: var(--red);
}

.funds-page .price-up {
    color: var(--red);
}

.funds-page .price-down {
    color: var(--green);
}

.table-shell {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(139, 179, 255, 0.12);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(120, 168, 255, 0.08);
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(139, 179, 255, 0.1);
}

th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.login-page {
    min-height: calc(100vh - 110px);
    display: grid;
    place-items: center;
    padding: 32px 0;
}

.login-shell {
    width: min(460px, 100%);
}

.login-card {
    padding: 34px;
}

.login-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--accent-strong);
    background: rgba(120, 168, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.login-title {
    font-size: 40px;
    margin: 0 0 10px;
    letter-spacing: -0.05em;
}

.login-subtitle {
    color: var(--muted);
    margin: 0 0 26px;
}

.login-tabs {
    margin-bottom: 22px;
}

.login-tabs .tab {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.login-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px !important;
    margin-right: 10px;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: var(--muted) !important;
    border-radius: 999px !important;
    transition: 160ms ease;
}

.login-tab--selected {
    border-color: var(--border-strong) !important;
    color: var(--text) !important;
    background: rgba(120, 168, 255, 0.1) !important;
}

.login-card input {
    width: 100%;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.login-card input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(120, 168, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.login-card ::placeholder {
    color: #6f84a8;
}

.section-title {
    margin: 0 0 16px;
    font-size: 20px;
}

.muted-text {
    color: var(--muted);
}

.backtest-engine-section {
    margin-bottom: 14px;
}

.backtest-select {
    margin-bottom: 0;
}

.backtest-select .Select-control {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
}

.backtest-select .Select-control:hover {
    border-color: var(--border-strong);
}

.backtest-select.is-focused > .Select-control {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(120, 168, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.backtest-select .Select-placeholder,
.backtest-select .Select--single > .Select-control .Select-value,
.backtest-select .Select-input,
.backtest-select .Select-arrow-zone,
.backtest-select .Select-clear-zone {
    height: 50px;
    line-height: 50px;
}

.backtest-select .Select-placeholder,
.backtest-select .Select-value-label {
    color: var(--text) !important;
    font-size: 14px;
}

.backtest-select .Select-input > input {
    color: var(--text);
}

.backtest-select .Select-arrow {
    border-top-color: var(--muted);
}

.backtest-select.is-open .Select-arrow {
    border-bottom-color: var(--muted);
}

.backtest-select .Select-menu-outer {
    margin-top: 8px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    background: rgba(11, 22, 39, 0.98);
    box-shadow: 0 24px 48px rgba(2, 8, 18, 0.38);
    overflow: hidden;
}

.backtest-select .Select-option {
    padding: 12px 14px;
    color: var(--text);
    background: transparent;
    border-bottom: 1px solid rgba(139, 179, 255, 0.08);
}

.backtest-select .Select-option:last-child {
    border-bottom: none;
}

.backtest-select .Select-option.is-focused {
    background: rgba(120, 168, 255, 0.1);
}

.backtest-select .Select-option.is-selected {
    background: rgba(120, 168, 255, 0.16);
    color: var(--accent-strong);
    font-weight: 600;
}

.backtest-engine-help {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(139, 179, 255, 0.14);
    background: rgba(120, 168, 255, 0.06);
}

.backtest-engine-help-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.backtest-engine-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(120, 168, 255, 0.14);
    color: var(--accent-strong);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.backtest-engine-help-name {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.backtest-engine-help-text {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.funds-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.fund-watchlist,
.fund-detail-panel {
    min-height: 420px;
}

.fund-empty-state {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(139, 179, 255, 0.22);
    background: rgba(255, 255, 255, 0.02);
    padding: 18px 16px;
    text-align: center;
}

.fund-empty-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.fund-empty-subtitle {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.error-text {
    color: var(--red);
    margin-top: 12px;
    text-align: center;
}

.fund-watchlist-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fund-add-input {
    flex: 1;
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(139, 179, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    outline: none;
    box-sizing: border-box;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fund-add-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(120, 168, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.fund-add-input::placeholder {
    color: #6f84a8;
}

.fund-add-btn {
    flex-shrink: 0;
    min-width: 76px;
}

.fund-watchlist .error-text {
    text-align: left;
    margin-top: 4px;
    min-height: 18px;
}

.fund-watchlist-table {
    margin-top: 12px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(139, 179, 255, 0.12);
    background: rgba(255, 255, 255, 0.01);
}

.fund-watchlist-headrow {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.75fr) minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
    padding: 12px 14px;
    gap: 10px;
    background: rgba(120, 168, 255, 0.08);
    border-bottom: 1px solid rgba(139, 179, 255, 0.1);
}

.fund-watchlist-col {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    white-space: nowrap;
}

.fund-watchlist-col--nav,
.fund-watchlist-col--pct,
.fund-watchlist-col--time,
.fund-watchlist-col--action {
    text-align: right;
}

.fund-watchlist-body {
    display: flex;
    flex-direction: column;
}

.fund-watch-row-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.75fr) minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
    gap: 10px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(139, 179, 255, 0.08);
}

.fund-watch-row {
    grid-column: 1 / 5;
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.75fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.fund-watch-action {
    display: flex;
    justify-content: flex-end;
}

.fund-watch-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.fund-watch-row:active {
    transform: translateY(0.5px);
}

.fund-watch-row.is-selected {
    background: rgba(120, 168, 255, 0.08);
    border-bottom-color: rgba(120, 168, 255, 0.14);
}

.fund-watch-row.is-error {
    background: rgba(255, 255, 255, 0.012);
}

.fund-watch-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fund-watch-code {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.fund-watch-name {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fund-watch-error {
    font-size: 11px;
    color: var(--red);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fund-watch-error:empty {
    display: none;
}

.fund-watch-cell {
    font-size: 12px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
}

.fund-watch-cell--time {
    display: flex;
    justify-content: flex-end;
    font-weight: 500;
    color: var(--muted);
    white-space: normal;
}

.fund-watch-time-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    line-height: 1.2;
}

.fund-watch-time-date,
.fund-watch-time-clock,
.fund-watch-time-single {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.fund-watch-time-date {
    font-size: 11px;
}

.fund-watch-time-clock,
.fund-watch-time-single {
    font-size: 12px;
}

.fund-watch-row:last-child {
    border-bottom: none;
}

.fund-watch-row-shell:last-child {
    border-bottom: none;
}

.fund-detail-status {
    min-height: 20px;
}

.fund-status-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.fund-status-tip--warn {
    border: 1px solid rgba(251, 113, 133, 0.26);
    background: rgba(251, 113, 133, 0.08);
    color: rgba(236, 243, 255, 0.92);
}

.fund-detail-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fund-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.fund-detail-title {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fund-detail-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fund-detail-code {
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.06em;
}

.fund-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.fund-detail-meta-label {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fund-detail-meta-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.fund-detail-metrics {
    border-radius: 18px;
    border: 1px solid rgba(139, 179, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
}

.fund-detail-metric-label {
    margin-bottom: 10px;
}

.fund-detail-metric-value {
    font-size: 34px;
    margin-bottom: 8px;
}

.fund-detail-change {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.fund-detail-change-pct {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.fund-info-list {
    border-radius: 18px;
    border: 1px solid rgba(139, 179, 255, 0.12);
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.fund-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(139, 179, 255, 0.08);
}

.fund-info-row:last-child {
    border-bottom: none;
}

.fund-info-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.02em;
}

.fund-info-value {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.nav-user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-user-email {
    color: var(--muted);
    font-size: 13px;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.users-page .error-text {
    text-align: left;
    margin-top: 0;
    margin-bottom: 16px;
}

.users-grid {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}

.user-side-card,
.user-main-card,
.user-reset-card {
    min-height: 220px;
}

.user-form-input {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
    box-sizing: border-box;
    outline: none;
}

.user-form-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.user-table-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.user-refresh-btn {
    min-width: 76px;
}

.user-table {
    margin-top: 12px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(139, 179, 255, 0.12);
    background: rgba(255, 255, 255, 0.01);
}

.user-table-head,
.user-row {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 120px 120px minmax(180px, 220px);
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
}

.user-table-head {
    background: rgba(120, 168, 255, 0.08);
    border-bottom: 1px solid rgba(139, 179, 255, 0.1);
}

.user-table-col {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.user-table-col--actions {
    text-align: right;
}

.user-table-body {
    display: flex;
    flex-direction: column;
}

.user-row {
    border-bottom: 1px solid rgba(139, 179, 255, 0.08);
}

.user-row:last-child {
    border-bottom: none;
}

.user-row-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-row-name {
    font-size: 14px;
    font-weight: 700;
}

.user-row-email {
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-row-cell {
    display: flex;
    align-items: center;
}

.user-row-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.user-action-btn {
    min-width: 88px;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(139, 179, 255, 0.18);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    font-size: 12px;
    font-weight: 600;
}

.user-chip.is-admin {
    color: var(--accent-strong);
    border-color: rgba(120, 168, 255, 0.28);
    background: rgba(120, 168, 255, 0.1);
}

.user-chip.is-active {
    color: var(--green);
    border-color: rgba(52, 211, 153, 0.22);
    background: rgba(52, 211, 153, 0.08);
}

.user-chip.is-inactive {
    color: var(--red);
    border-color: rgba(251, 113, 133, 0.22);
    background: rgba(251, 113, 133, 0.08);
}

.user-reset-target {
    margin: 8px 0 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        padding: 18px 20px;
    }

    .nav-auth-area {
        margin-left: 0;
    }

    .app-page-shell {
        width: min(100vw - 24px, 1180px);
        padding-top: 24px;
    }

    .page-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-meta {
        text-align: left;
    }

    .funds-grid {
        grid-template-columns: 1fr;
    }

    .users-grid {
        grid-template-columns: 1fr;
    }

    .fund-watchlist-headrow,
    .fund-watch-row-shell {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr) minmax(0, 0.9fr) auto;
    }

    .fund-watch-row {
        grid-column: 1 / 4;
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    }

    .fund-watchlist-col--time,
    .fund-watch-cell--time {
        display: none;
    }
}
