/* Danish Open Access Indicator - Modern Styles */

        :root {
            --primary-blue: #f68212;
            --primary-dark: #f68212;
            --accent-teal: #eeb076;
            --accent-light: #ec9e55;
            --background-light: #F8FAFB;
            --background-white: #FFFFFF;
            --text-primary: #1A2332;
            --text-secondary: #4A5568;
            --text-muted: #718096;
            --border-color: #E2E8F0;
            --success-green: #0E8367;
            --warning-amber: #D97706;
            --blocked-red: #DC2626;
            
            --font-display: 'Crimson Pro', serif;
            --font-body: 'DM Sans', sans-serif;
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            line-height: 1.6;
            background: var(--background-light);
            overflow-x: hidden;
        }

/* Top Bar */
        .top-bar {
            background: var(--primary-dark);
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: flex-end;
            gap: 1.5rem;
            align-items: center;
        }

        .language-switch {
            display: flex;
            gap: 0.5rem;
        }

        .language-switch a {
            color: #ff9800;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: opacity 0.2s, text-decoration 0.2s;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
        }

        .language-switch a.active,
        .language-switch a:hover {
        opacity: 1;
        text-decoration: underline;
        background: #fff3e0; /* subtle highlight, optional */
        }

/* Header & Navigation */
        header {
            background: var(--background-white);
            box-shadow: var(--shadow-sm);
            top: 0;
            z-index: 100;
            animation: slideDown 0.5s ease;
            border-bottom: 1px solid var(--border-color);

        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.7rem 2rem 0.7rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }


        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 1rem;
        }

        .logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: rgb(64, 86, 99);
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        nav {
            display: flex;
            gap: 0.5rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 1.25rem;
            right: 1.25rem;
            height: 2px;
            background: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        nav a:hover {
            color: var(--primary-blue);
            background: rgba(10, 76, 140, 0.05);
        }

        nav a:hover::after {
            transform: scaleX(1);
        }

        nav a.active {
            color: var(--primary-blue);
            background: rgba(10, 76, 140, 0.08);
        }

/* Hero Section */
        .hero {
            background: var(--background-light);
            color: var(--text-primary);
            padding: 1.5rem 2rem;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }

        .hero::before {
            display: none;
        }

        .hero-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1rem;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.4s both;
            margin-bottom: 0.5rem;
        }

        .hero p strong {
            font-weight: 700;
            color: var(--primary-blue);
        }

/* Page Header */
        .page-header {
            background: var(--background-light);
            color: var(--text-primary);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .page-header-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

/* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 1.5rem auto 4rem;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .main-content.no-offset {
            margin-top: 0;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: var(--background-white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.15s; }
        .feature-card:nth-child(2) { animation-delay: 0.30s; }
        .feature-card:nth-child(3) { animation-delay: 0.45s; }
        .feature-card:nth-child(4) { animation-delay: 0.60s; }
        .feature-card:nth-child(5) { animation-delay: 0.75s; }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: white;
        }

        .feature-card h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.8505rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.850rem;
            transition: all 0.2s ease;
            gap: 0.5rem;
        }

        .card-link:hover {
            color: var(--accent-teal);
            gap: 0.75rem;
        }

        .card-link::after {
            content: '';
            position: absolute;
            inset: 0;
        }

        .card-link::before {
        content: '→';
        transition: transform 0.2s ease;
        order: 1; /* keeps it after the text */
        }
        
        .card-link:hover::before {
        transform: translateX(4px);
        }

/* Sections */
    .content-section {
        background: var(--background-white);
        border-radius: 16px;
        padding: 3rem;
        margin-bottom: 3rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
    }

    .content-section h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
    }

    .content-section h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 2rem 0 1rem;
    }

    .content-section p {
        color: var(--text-secondary);
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .content-section ul, .content-section ol {
        margin-left: 2rem;
        margin-bottom: 1rem;
        color: var(--text-secondary);
    }

    .content-section li {
        margin-bottom: 0.5rem;
        line-height: 1.7;
    }

/* Chart Containers */
    .chart-section {
        background: var(--background-white);
        border-radius: 16px;
        padding: 3rem;
        margin-bottom: 3rem;
        box-shadow: var(--shadow-md);
    }

    .chart-section h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .chart-section p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .chart-container {
        background: var(--background-light);
        border: 2px dashed var(--border-color);
        border-radius: 12px;
        padding: 4rem 2rem;
        text-align: center;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .chart-container:hover {
        border-color: var(--primary-blue);
        background: rgba(10, 76, 140, 0.02);
    }

    .chart-placeholder-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.3;
    }

    .chart-placeholder-text {
        color: var(--text-muted);
        font-size: 1.125rem;
        font-weight: 600;
    }

    .chart-placeholder-subtext {
        color: var(--text-muted);
        font-size: 0.9375rem;
        margin-top: 0.5rem;
    }


    .chart-image {
        width: 100%;
        height: auto;
        display: block;
    }


/* Contact Section */
    .contact-section {
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
        border-radius: 16px;
        padding: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        color: white;
        box-shadow: var(--shadow-lg);
    }

    .contact-section h2 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-label {
        font-size: 1rem;
        opacity: 0.9;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .contact-value {
        font-size: 0.975rem;
        font-weight: 500;
    }

    .contact-value a {
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        transition: border-color 0.2s ease;
    }

    .contact-value a:hover {
        border-bottom-color: white;
    }

/* Download Section */
    .download-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .download-card {
        background: var(--background-light);
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .download-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .download-card h3 {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.75rem;
    }

    .download-card p {
        color: var(--text-secondary);
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .download-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--primary-blue);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .download-button:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* Footer */
footer {
    background: white;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 2rem 1.25rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-left {
    max-width: 280px;
}

.footer-right {
    max-width: 280px;
}

.footer-agency-link {
    color: rgb(64, 86, 99);
    text-decoration: none;
    font-size: 0.925rem;
    font-family: var(--font-display);
    line-height: 1.5;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-agency-link:hover {
    color: var(--primary-dark);
}

.footer-arrow {
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-ministry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ministry-text {
    font-size: 0.875rem;
    font-family: var(--font-display);
    color: var(--primary-dark);
    line-height: 1.4;
}

.ministry-logo {
    height: 45px;
    width: auto;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgb(64, 86, 99);
    margin: 0;
    font-family: var(--font-display);
}

.footer-bottom a {
    color: rgb(64, 86, 99);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary-dark);
}

.footer-ministry-link {
    color: rgb(64, 86, 99);
    text-decoration: none;
    font-size: 0.925rem;
    font-family: var(--font-display);
    line-height: 1.5;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-ministry-link:hover {
    color: rgb(64, 86, 99);
    text-decoration: underline;
}

/* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: var(--background-white);
        padding: 1.5rem 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-xl);
        max-width: 400px;
        display: none;
        animation: slideInRight 0.5s ease;
        border: 1px solid var(--border-color);
        z-index: 1000;
    }

    @keyframes slideInRight {
        from { transform: translateX(400px); }
        to { transform: translateX(0); }
    }

    .cookie-banner.show {
        display: block;
    }

    .cookie-banner p {
        margin-bottom: 1rem;
        color: var(--text-secondary);
        font-size: 0.9375rem;
    }

    .cookie-banner a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
    }

    .cookie-banner button {
        background: var(--primary-blue);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: var(--font-body);
        font-size: 0.9375rem;
    }

    .cookie-banner button:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* Responsive Design */
    @media (max-width: 768px) {
        .header-container {
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        nav {
            flex-direction: column;
            width: 100%;
        }
        
        nav a {
            width: 100%;
            text-align: left;
        }
        
        .hero h1, .page-header h1 {
            font-size: 2.5rem;
        }
        
        .hero p, .page-header p {
            font-size: 1.125rem;
        }
        
        .card-grid {
            grid-template-columns: 1fr;
        }
        
        .main-content {
            margin-top: 2rem;
        }
        
        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .cookie-banner {
            right: 1rem;
            left: 1rem;
            max-width: none;
        }
    }



/* FAQ SECTION */

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'DM Sans', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

/* Circle icon */
.faq-question::before {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #f37021;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Change to minus when active */
.faq-item.active .faq-question::before {
    content: "−";
}

/* Answer hidden by default */
.faq-answer {
    margin-left: 42px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.1s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* tall enough for any answer */
    opacity: 1;
    margin-top: 0.5rem;
}





/* Tab Navigation Styles */
        .tab-navigation {
            display: flex;
            gap: 0;
            background: var(--background-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-bottom: 3rem;
            border: 1px solid var(--border-color);
        }
        
        .tab-button {
            flex: 1;
            padding: 1rem 2rem;
            background: var(--background-white);
            border: none;
            border-right: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        
        .tab-button:last-child {
            border-right: none;
        }
        
        .tab-button:hover {
            background: var(--background-light);
            color: var(--primary-blue);
        }
        
        .tab-button.active {
            background: var(--primary-blue);
            color: white;
            position: relative;
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-teal);
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
        /* Data Table */
        .data-table-container {
            margin-top: 3rem;
            overflow-x: auto;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--background-white);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .data-table th,
        .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .data-table th {
            background: var(--background-light);
            font-weight: 700;
            color: var(--text-primary);
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }
        
        .data-table td {
            color: var(--text-secondary);
        }
        
        .data-table tr:hover {
            background: var(--background-light);
        }
        
        .data-table .number-cell {
            text-align: right;
            font-variant-numeric: tabular-nums;
        }
        
        /* University Legend */
        .university-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--background-light);
            border-radius: 8px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .legend-color-box {
            width: 20px;
            height: 20px;
            border-radius: 3px;
        }
        
        .legend-label {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-primary);
        }


        /* OA Types Legend Styles */
        .oa-types-legend {
        background: var(--background-light, #f5f5f5);
        padding: 1.2rem 1.5rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin: 1rem 0 1.5rem 0;
        font-size: 1rem;
        }

        .oa-legend-item {
        display: flex;
        align-items: center;
        gap: 0.3em;
        }

        .oa-legend-color {
        display: inline-block;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        margin-right: 0.3em;
        vertical-align: middle;
        }

        .oa-uni-repo { background: #4CAF50; }         /* Green */
        .oa-ext-repo { background: #AED581; }         /* Light green */
        .oa-journal-apc { background: #FF9800; }      /* Orange */
        .oa-journal-noapc { background: #FFCC80; }    /* Light orange */




        /* Single OA Legend */
        .oa-legend-single {
        background: var(--background-light, #f5f5f5);
        padding: 1.2rem 1.5rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 1.5em;
        margin: 1rem 0 1.5rem 0;
        font-size: 1rem;
        }

        .oa-legend-color {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 2px;
        margin-right: 0.3em;
        vertical-align: middle;
        }

        .oa-realised {
        background: #16b34a; /* Adjust color as needed */
        }

        .oa-legend-label {
        font-weight: 600;
        color: #222;
        }

        .oa-legend-desc {
        font-weight: 400;
        font-size: 0.75em;
        color: #555;
        margin-left: 0.25em;
        }



        .chart-container {
        width: 100%;
        height: 750px;
        max-width: 1400px;
        margin: 20px auto;
        position: relative;
        }

        canvas {
            background: var(--background-light, #f5f5f5);
            border-radius: 8px;
        }


                /* Data page specific styles */
        .data-page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .data-page-header h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        
        .period-selector {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .period-selector label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9375rem;
        }
        
        .period-selector select {
            padding: 0.5rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 0.9375rem;
            background: var(--background-white);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .period-selector select:hover {
            border-color: var(--primary-blue);
        }
        

/* Data grid table */
        .data-grid {
            background: var(--background-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .data-grid-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .data-grid-table thead {
            background: var(--background-light);
        }
        
        .data-grid-table th {
            padding: 1.25rem 1.5rem;
            text-align: left;
            font-weight: 700;
            color: var(--text-primary);
            border-bottom: 2px solid var(--border-color);
        }
        
        .data-grid-table th:first-child {
            width: 35%;
        }
        
        .data-grid-table th.year-header {
            text-align: center;
            font-size: 1rem;
            font-weight: 700;
        }
        
        .data-grid-table tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: background 0.2s ease;
        }
        
        .data-grid-table tbody tr:hover {
            background: var(--background-light);
        }
        
        .data-grid-table td {
            padding: 1.25rem 1.5rem;
            vertical-align: center;
        }
        
        .data-category {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .data-description {
            color: var(--text-muted);
            font-size: 0.875rem;
            line-height: 1.5;
        }
        
        .data-cell {
            text-align: center;
            padding: 1rem 0.5rem;
        }
        
        .download-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--background-white);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            position: relative;
        }
        
        .download-icon img {
            width: 35px;
            height: 35px;
        }
        
        .download-icon.xlsx {
            border-color: #2E7D32;
        }
        
        .download-icon.xlsx:hover {
            background: #2E7D32;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .download-icon.pdf {
            border-color: #D32F2F;
        }
        
        .download-icon.pdf:hover {
            background: #D32F2F;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        /* File type badges */
        .file-badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .file-badge.xlsx {
            background: #E8F5E9;
            color: #2E7D32;
        }
        
        .file-badge.pdf {
            background: #FFEBEE;
            color: #D32F2F;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .data-grid-table {
                font-size: 0.875rem;
            }
            
            .data-grid-table th,
            .data-grid-table td {
                padding: 1rem;
            }
            
            .download-icon {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .data-page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            /* Make table scrollable on mobile */
            .data-grid {
                overflow-x: auto;
            }
            
            .data-grid-table {
                min-width: 800px;
            }
        }