/* ============================================
   LEAGUE VIEW PAGE CSS - TERMINAL STYLE
   Extends team-stats-modern.css
   ============================================ */

/* League Dashboard Container */
.league-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* League Header */
.header-content {
    padding: var(--spacing-md);
}

.league-identity {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.league-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 0;
}

.league-info h1 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.season-info {
    color: #f5f5f5;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.separator {
    margin: 0 8px;
    color: #e5e7eb;
}

/* Section Titles */
.section-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Overview Cards */
.league-overview-section {
    margin-bottom: 32px;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* 3 columns on medium screens */
@media (max-width: 1200px) {
    .overview-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overview-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.1s;
    position: relative;
}

.overview-card::before,
.overview-card::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.1s;
}

.overview-card::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.overview-card::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.overview-card:hover {
    border-color: var(--primary);
}

.overview-card:hover::before,
.overview-card:hover::after {
    border-color: var(--primary);
}

.card-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
}

.card-content {
    flex: 1;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.card-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5f5f5;
    font-weight: 700;
    font-family: var(--font-mono);
}

.card-sublabel {
    font-size: 15px;
    color: #f5f5f5;
    font-family: var(--font-mono);
    margin-top: 2px;
    font-weight: 700;
}

/* Rankings Section */
.rankings-section {
    margin-bottom: 40px;
}

.rankings-header {
    margin-bottom: 20px;
}

/* Ranking Tabs */
.ranking-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-top: 16px;
}

.ranking-tab {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.1s;
    position: relative;
    top: 1px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-tab:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
    border-radius: 0;
}

.ranking-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--bg-card);
}

.ranking-table-container {
    display: none;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.ranking-table-container::before,
.ranking-table-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.ranking-table-container::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.ranking-table-container::after {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.ranking-table-container.active {
    display: block;
}

.table-wrapper {
    overflow-x: auto;
}

/* League Table */
.league-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    font-family: var(--font-mono);
}

.league-table thead {
    background: transparent;
}

.league-table th {
    padding: 8px 12px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Left-align team column header */
.league-table th.team-col {
    text-align: left;
}

.league-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.05s;
}

.league-table tbody tr:hover {
    background: var(--bg-elevated);
}

.league-table td {
    padding: 10px 12px;
    color: #f5f5f5;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.league-table td.team-col {
    text-align: left;
}

.rank-col {
    width: 70px;
}

.team-col {
    min-width: 180px;
    text-align: left;
}

.score-col {
    min-width: 200px;
}

.record-col {
    min-width: 100px;
}

.stat-col {
    min-width: 80px;
}

.action-col {
    width: 100px;
}

/* Team Link */
.team-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.1s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.team-link:hover {
    color: var(--primary);
}

/* Rank Badge */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-mono);
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.rank-badge.rank-1 {
    background: var(--primary);
    color: var(--bg-main);
    border-color: var(--primary);
}

.rank-badge.rank-2 {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.rank-badge.rank-3 {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

/* Power Score Container */
.power-score-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.power-score-value {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-primary);
    min-width: 36px;
}

.power-score-gauge {
    flex: 1;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    max-width: 100px;
}

.gauge-fill {
    height: 100%;
    background: var(--primary) !important;
    transition: width 0.3s;
    border-radius: 0;
}

.score-explain-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-explain-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--primary);
}

/* Record Display */
.record {
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.win-pct {
    font-size: 15px;
    color: #f5f5f5;
    margin-left: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
}

/* Run Differential */
.run-diff.positive {
    color: #22c55e;
    font-weight: 600;
}

.run-diff.negative {
    color: #ef4444;
    font-weight: 600;
}

/* Compare Button */
.compare-btn {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.1s;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.compare-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--primary);
}

.compare-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-main);
}

/* Floating Compare Button */
.floating-compare-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--bg-main);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s;
    z-index: 100;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-compare-btn:hover {
    background: var(--bg-elevated);
    color: var(--primary);
}

/* Stat Leaders Section */
.stat-leaders-section {
    margin-bottom: 40px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.leaders-category {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 16px;
    position: relative;
}

.leaders-category::before,
.leaders-category::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.leaders-category::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.leaders-category::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.category-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.leaders-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 0;
    transition: background 0.05s;
}

.leader-item:hover {
    background: var(--bg-elevated);
}

.leader-rank {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    min-width: 24px;
    font-family: var(--font-mono);
    border: 1px solid var(--border);
    border-radius: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-info {
    flex: 1;
    min-width: 0;
}

.leader-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-mono);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.leader-team {
    font-size: 15px;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-mono);
    font-weight: 700;
}

.leader-stat {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: #ffffff;
    min-width: 45px;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Season Totals Section */
.season-totals-section {
    margin-bottom: 40px;
}

.season-totals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* 2 columns on medium screens */
@media (max-width: 1200px) {
    .season-totals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.total-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
    position: relative;
}

.total-card::before,
.total-card::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.1s;
}

.total-card::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.total-card::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.total-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.total-card:hover::before,
.total-card:hover::after {
    border-color: var(--primary);
}

.total-icon {
    font-size: 32px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--primary);
    border-radius: 0;
}

.total-content {
    flex: 1;
}

.total-value {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.total-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5f5f5;
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-content::before,
.modal-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.modal-content::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.modal-content::after {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.modal-content.wide {
    max-width: 1000px;
}

.modal-header {
    padding: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: transparent;
}

.modal-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.modal-subtitle {
    font-size: 15px;
    color: #f5f5f5;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 19px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 0;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: var(--font-mono);
}

.modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.modal-body {
    padding: var(--spacing-lg);
    overflow-y: auto;
    flex: 1;
    background: transparent;
}

.modal-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* Score Breakdown (in modal) */
.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overall-score {
    text-align: center;
    padding: 20px;
    background: var(--bg-elevated);
    border-radius: 0;
    border: 1px solid var(--border);
}

.score-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 0;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    margin-bottom: 12px;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.score-tier {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}

.score-rank {
    font-size: 15px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.score-components h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component-item {
    padding: 14px;
    background: var(--bg-elevated);
    border-radius: 0;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

.component-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.component-score {
    font-size: 21px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
    margin-bottom: 6px;
}

.component-bar {
    height: 4px;
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 6px;
}

.component-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 0;
}

.component-detail {
    font-size: 15px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.score-summary {
    padding: 14px;
    background: var(--bg-elevated);
    border-radius: 0;
    border-left: 2px solid var(--primary);
    border: 1px solid var(--border);
}

.score-summary p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-mono);
}

/* ============================================
   COMPARISON MODAL TABLE STYLES
   ============================================ */

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    font-family: var(--font-mono);
}

.comparison-table-container {
    padding: 20px;
}

.comparison-table thead {
    background: transparent;
}

.comparison-table th {
    padding: 8px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    transition: background 0.05s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.comparison-table tbody tr:hover {
    background: var(--bg-elevated);
}

.comparison-table td {
    padding: 8px 12px;
    color: #f5f5f5;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.comparison-section {
    margin-bottom: 24px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.comparison-section:last-child {
    margin-bottom: 0;
}

.comparison-section::before,
.comparison-section::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.comparison-section::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.comparison-section::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.comparison-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leaders-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .league-dashboard {
        padding: var(--spacing-sm);
        padding-left: max(var(--spacing-sm), env(safe-area-inset-left));
        padding-right: max(var(--spacing-sm), env(safe-area-inset-right));
        padding-top: max(var(--spacing-sm), env(safe-area-inset-top));
        padding-bottom: max(var(--spacing-sm), env(safe-area-inset-bottom));
    }

    .overview-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .overview-card {
        padding: 12px;
    }

    .card-icon {
        font-size: 21px;
        width: 44px;
        height: 44px;
    }

    .card-value {
        font-size: 21px;
    }

    .ranking-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .ranking-tab {
        padding: 6px 12px;
        font-size: 15px;
        white-space: nowrap;
    }

    .league-table {
        font-size: 16px;
    }

    .league-table th,
    .league-table td {
        padding: 8px 10px;
    }

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

    .season-totals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-compare-btn {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
        padding: 8px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .overview-cards {
        grid-template-columns: 1fr;
    }

    .season-totals-grid {
        grid-template-columns: 1fr;
    }

    .league-icon {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .league-info h1 {
        font-size: 17px;
    }

    .section-title {
        font-size: 15px;
    }
}

/* Age-adjusted record display */
.age-adjusted-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 12px;
}

.age-adj-record {
    color: #64748b;
    font-weight: 500;
}

.age-boost {
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
}

.age-boost.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.age-boost.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
