/* ===== CROWN LEADERBOARD STYLES ===== */

/* CSS Variables for Brand Colors */
:root {
    --crown-red: #A4234C;
    --deep-burgundy: #681C32;
    --black: #000000;
    --warm-gray: #D7D1CA;
    --white: #FFFFFF;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    
    /* Typography */
    --font-headline: 'Heebo', sans-serif;
    --font-body: 'Abhaya Libre', serif;
    --font-accent: 'Old Standard TT', serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 3rem 0;
    --card-padding: 2rem;
    
    /* Animations */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--warm-gray) 0%, #f8f6f3 100%);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
.main-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crown-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: var(--font-headline);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-burgundy);
    margin-bottom: 1.25rem;
    text-align: center;
}

.tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--deep-burgundy);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER SECTION ===== */
.header {
    background: linear-gradient(135deg, var(--crown-red) 0%, var(--deep-burgundy) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/1.svg');
    background-size: 150px 150px;
    background-repeat: repeat;
    opacity: 0.15;
    mask: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}


.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.main-title {
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 20px rgba(255,215,0,0.3); }
    100% { text-shadow: 3px 3px 6px rgba(0,0,0,0.3), 0 0 30px rgba(255,215,0,0.5); }
}

.subtitle, .tagline {
    color: var(--warm-gray);
}

/* ===== QUARTER SELECTOR ===== */
.quarter-selector {
    margin: 2rem 0;
}

.quarter-selector label {
    font-family: var(--font-headline);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 1rem;
    color: var(--warm-gray);
}

.quarter-dropdown {
    background: var(--white);
    border: 2px solid var(--crown-red);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quarter-dropdown:hover {
    background: var(--warm-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: var(--section-padding);
}

/* ===== LEADERBOARD SECTION ===== */
.leaderboard-section {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sort-btn {
    background: var(--warm-gray);
    border: 2px solid var(--crown-red);
    color: var(--deep-burgundy);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: var(--font-headline);
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sort-btn:hover,
.sort-btn.active {
    background: var(--crown-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(164, 35, 76, 0.3);
}

/* ===== LEADERBOARD TABLE ===== */
.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-family: var(--font-body);
    table-layout: fixed;
}

.leaderboard-table th:nth-child(1),
.leaderboard-table td:nth-child(1) {
    width: 60px;
}

.leaderboard-table th:nth-child(2),
.leaderboard-table td:nth-child(2) {
    width: 200px;
}

/* Financial Metrics column - wider for "Financial Metrics" text */
.leaderboard-table th:nth-child(3),
.leaderboard-table td:nth-child(3) {
    width: 140px;
}

/* Revinate Metrics column */
.leaderboard-table th:nth-child(4),
.leaderboard-table td:nth-child(4) {
    width: 130px;
}

/* IT Metrics column */
.leaderboard-table th:nth-child(5),
.leaderboard-table td:nth-child(5) {
    width: 100px;
}

/* HR Metrics column */
.leaderboard-table th:nth-child(6),
.leaderboard-table td:nth-child(6) {
    width: 110px;
}

/* Other column - compact since it's short */
.leaderboard-table th:nth-child(7),
.leaderboard-table td:nth-child(7) {
    width: 80px;
}

/* Total Score column */
.leaderboard-table th:nth-child(8),
.leaderboard-table td:nth-child(8) {
    width: 120px;
}


.leaderboard-table th {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--crown-red) 100%);
    color: var(--white);
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1.2;
}

.leaderboard-table th:hover {
    background: linear-gradient(135deg, var(--crown-red) 0%, var(--deep-burgundy) 100%);
}

.leaderboard-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--warm-gray);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    vertical-align: middle;
}

.leaderboard-table tbody tr {
    transition: var(--transition-smooth);
}

.leaderboard-table tbody tr:hover {
    background: rgba(164, 35, 76, 0.05);
    transform: translateX(5px);
}

/* ===== RANKING STYLES ===== */
.rank-cell {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    min-width: 60px;
    vertical-align: middle;
}


.crown-emoji {
    font-size: 1.6rem;
    animation: crownBounce 2s ease-in-out infinite;
    position: relative;
    top: 19px;
    display: inline-block;
}

.rank-1 {
    /* Styles for first place rank cell */
}

.rank-2 {
    color: var(--silver);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.rank-3 {
    color: var(--bronze);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes goldShimmer {
    0% { text-shadow: 1px 1px 2px rgba(0,0,0,0.3), 0 0 10px rgba(255,215,0,0.5); }
    100% { text-shadow: 1px 1px 2px rgba(0,0,0,0.3), 0 0 20px rgba(255,215,0,0.8); }
}

.hotel-name {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-size: 1rem;
    text-align: left;
    padding-left: 0.75rem;
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crown-winner {
    background: linear-gradient(45deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.05) 100%);
    border-left: 5px solid var(--gold);
    position: relative;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}


.top-three {
    font-weight: 600;
}

.top-three .hotel-name {
    color: var(--deep-burgundy);
    font-weight: 700;
}

@keyframes crownBounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.1); }
}

/* ===== SCORE BARS ===== */
.score-cell {
    text-align: center;
    min-width: 100px;
}

.placeholder-cell {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(164, 35, 76, 0.05);
    border-left: 4px solid var(--crown-red);
}

.placeholder-message {
    color: var(--deep-burgundy);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

.score-display {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.score-bar {
    background: var(--warm-gray);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin: 0.15rem auto 0;
    position: relative;
    width: 70px;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--crown-red) 0%, var(--gold) 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
    position: relative;
}

.score-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: scoreShine 2s ease-in-out infinite;
}

@keyframes scoreShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    margin-bottom: 2.5rem;
}

/* Top row: Two cards side by side */
.highlights-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Bottom row: Full width Category Kings */
.highlights-bottom-row {
    margin-top: 1.5rem;
}

.highlights-bottom-row .full-width {
    width: 100%;
}

.highlight-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--crown-red);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.highlight-card h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

/* ===== HOW TO WIN SECTION ===== */
.how-to-win-section {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.kpi-section {
    background: rgba(164, 35, 76, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.kpi-section:hover {
    background: rgba(164, 35, 76, 0.1);
    border-color: var(--crown-red);
    transform: translateY(-3px);
}

.kpi-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--crown-red);
    padding-bottom: 0.5rem;
}

.kpi-section-title i {
    font-size: 1.5rem;
    color: var(--crown-red);
}

.kpi-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kpi-metric {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--crown-red);
    transition: var(--transition-smooth);
}

.kpi-metric:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(164, 35, 76, 0.15);
}

.kpi-metric h5 {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.kpi-metric p {
    color: var(--black);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    transition: var(--transition-smooth);
}


.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-headline); /* Heebo */
    font-weight: 300; /* Light */
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-link:hover {
    color: var(--crown-red);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--crown-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 80%;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== CONFETTI ANIMATION ===== */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    animation: confettiFall 3s linear infinite;
}

.confetti-piece:nth-child(2n) {
    background: var(--crown-red);
}

.confetti-piece:nth-child(3n) {
    background: var(--silver);
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .leaderboard-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .table-controls {
        justify-content: center;
    }
    
    .highlights-top-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Category Kings Layout */
    .category-king-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--warm-gray);
        align-items: flex-start;
    }
    
    .category-king-item strong {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
        color: var(--deep-burgundy);
    }
    
    .king-hotel {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        text-align: left;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    :root {
        --card-padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .quarter-selector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .sort-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    /* Extra Mobile Category Kings Refinements */
    .category-king-item {
        padding: 0.75rem 0;
    }
    
    .category-king-item strong {
        font-size: 0.9rem;
    }
    
    .king-hotel {
        font-size: 0.85rem;
        padding-left: 0.5rem;
    }
    
    .highlight-card {
        padding: 1.25rem;
    }
    
    .highlight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    :root {
        --card-padding: 1rem;
    }
}

/* ===== ADDITIONAL ANIMATION STYLES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-king-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--warm-gray);
    gap: 1rem;
}

.category-king-item:last-child {
    border-bottom: none;
}

.category-king-item strong {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    text-align: left;
    font-size: 1rem;
}

.king-hotel {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    text-align: left;
    font-size: 1rem;
}

.king-score {
    font-family: var(--font-headline);
    font-weight: 300;
    color: var(--deep-burgundy);
    text-align: right;
    font-size: 1rem;
}

.most-improved-item {
    text-align: center;
    padding: 1rem;
}

.improved-hotel {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.improvement-text {
    color: var(--deep-burgundy);
    margin-bottom: 0.5rem;
}

.improvement-badge {
    font-size: 2rem;
}

/* ===== ENHANCED TRENDS SECTION ===== */
.trends-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trend-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(164, 35, 76, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--crown-red);
    transition: var(--transition-smooth);
    gap: 1rem;
}

.trend-item:hover {
    background: rgba(164, 35, 76, 0.1);
    transform: translateX(5px);
}

.trend-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trend-rank {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    font-size: 1.2rem;
    min-width: 30px;
}

.trend-hotel {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-size: 1rem;
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.trend-up {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.trend-down {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.trend-steady {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.trend-score {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-size: 1.1rem;
    text-align: right;
}

/* ===== ENHANCED MOST IMPROVED SECTION ===== */
.most-improved-item {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.improvement-badge {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.improved-hotel {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rank-change {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.2));
    border-radius: 25px;
    border: 2px solid #22c55e;
}

.prev-rank {
    font-family: var(--font-headline);
    font-weight: 700;
    color: #6b7280;
    font-size: 1.2rem;
    text-decoration: line-through;
}

.arrow {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: bold;
}

.current-rank {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--crown-red);
    font-size: 1.2rem;
}

.improvement-text {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.score-improvement {
    font-family: var(--font-headline);
    font-weight: 300;
    color: var(--deep-burgundy);
    font-size: 1rem;
}

.no-improvement {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.steady-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.steady-text {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-size: 1.2rem;
}

.steady-subtext {
    color: #6b7280;
    font-size: 0.9rem;
}