/* ===========================
   Typography
=========================== */

/* Global Typography */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-primary);
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Page Headers */
.page-header {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

/* Transaction Date Display */
.last-transaction-date {
    color: var(--brand-purple);
    padding: 3px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
}

/* Card Titles */
.metric-card .card-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    text-align: left;
}

/* Form Elements Typography */
.dropdown {
    font-size: 1.2rem;
    background-color: var(--bg-primary);
    padding: 5px;
    min-width: 200px;
    text-align: center;
}

/* Date Range Typography */
.date-range-green {
    color: var(--success-green);
    font-weight: bold;
}

.date-range-error {
    color: var(--error-red);
    font-weight: bold;
}

/* Metric Labels */
.metric-label {
    font-size: 11px;
    color: var(--text-secondary, #6B7280);
    margin-bottom: 2px;
}

.metric-label-small {
    font-size: 10px;
    color: var(--text-secondary, #6B7280);
    margin-bottom: 2px;
}

/* Transaction Typography */
.transaction-date {
    font-size: 14px;
    font-weight: 500;
    min-width: 65px;
}

.transaction-amount {
    font-size: 16px;
    min-width: 80px;
}

.transaction-desc {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
}

.transaction-category {
    font-size: 12px;
    font-weight: bold;
}

/* Stacked Cards Typography */
.year-text {
    flex: 1;
    text-align: left;
}

.age-text {
    flex: 1;
    text-align: center;
}

.calendar-text {
    flex: 1;
    text-align: right;
}

.net-worth-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--brand-purple, #b464ff);
}

.savings-value {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-primary, #333);
}

.return-value {
    font-size: 14px;
    font-weight: bold;
    color: var(--success-green, #22C55E);
}

.withdrawal-value {
    font-size: 12px;
    font-weight: bold;
    color: var(--warning-orange, #FF9500);
}

.income-boost-value {
    font-size: 12px;
    font-weight: bold;
    color: var(--success-green, #22C55E);
}

.expense-value {
    font-size: 12px;
    font-weight: bold;
    color: var(--error-red, #EF4444);
}

.amount-needed-value {
    font-size: 12px;
    font-weight: bold;
    color: var(--text-primary, #333);
}

.afford-label {
    font-size: 13px;
    color: var(--text-secondary, #6B7280);
}

.afford-icon {
    font-size: 16px;
    font-weight: bold;
}

.no-data-message {
    text-align: center;
    color: var(--text-secondary, #6B7280);
    padding: 20px;
    font-style: italic;
} 