:root {
    --brand-blue: #0c4ca3;
    --brand-red: #dc3545;
    --brand-black: #040404;
    --brand-white: #ffffff;
    --row-alt: #f2f6ff;
    --row-alt-dark: #daf2ff;
}

body {
    background: #f8f9fc;
    color: var(--brand-black);
    min-height: 100vh;
}

header, footer {
    font-family: 'Inter', system-ui, sans-serif;
}

main {
    padding: 1.5rem 0 3rem;
    width: 100%;
}

main.container-fluid {
    max-width: 100%;
}

.report-card {
    background: var(--brand-white);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 15px 45px rgba(12, 76, 163, 0.15);
}

.rate-banner {
    border-radius: .75rem;
    background: linear-gradient(135deg, var(--brand-blue), #2d7eff);
    color: var(--brand-white);
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-badge {
    font-size: .85rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: .5rem;
    background: rgba(255, 255, 255, 0.2);
}

.table-card {
    border-radius: .85rem;
    border: 1px solid rgba(12, 76, 163, 0.2);
    overflow: hidden;
}

.table-card thead {
    background: rgba(12, 76, 163, 0.1);
}

.table-card td {
    vertical-align: middle;
    border: none;
}

.table-card input,
.table-card select {
    border: 1px solid rgba(12, 76, 163, 0.2);
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    font-weight: 500;
    border-radius: 0.35rem;
    padding: 0.35rem 0.5rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.table-card .currency-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(12, 76, 163, 0.2);
    border-radius: 0.35rem;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    font-weight: 500;
}

.table-card .amount-cell {
    text-align: right;
}

.table-card tbody tr:nth-of-type(odd) {
    background: rgba(12, 76, 163, 0.03);
}

.table-card tbody tr:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.9);
}

.auction-cta {
    border-radius: .75rem;
    background: var(--brand-blue);
    color: var(--brand-white);
    border: none;
}

.expense-usd {
    background: rgba(220, 53, 69, 0.15) !important;
}

.entry-usd {
    background: rgba(12, 76, 163, 0.2) !important;
}

.highlights-row {
    background: rgba(12, 76, 163, 0.06);
}

.user-panel {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 1rem;
}

.user-panel a:hover {
    text-decoration: underline;
}

.generate-actions {
    gap: .75rem;
}

.legacy-label {
    font-size: .8rem;
    color: #7f8c94;
}

.password-toggle-btn {
    min-width: 90px;
    border-radius: 0.35rem;
    border: 1px solid rgba(12, 76, 163, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle-btn:hover {
    border-color: rgba(12, 76, 163, 0.45);
    background: rgba(12, 76, 163, 0.08);
}

.password-toggle-btn.login-mode {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(4, 4, 4, 0.15);
}
