
        /* Reset & Variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #045978;
            --primary-dark: #1e40af;
            --secondary: #f59e0b;
            --accent: #ef4444;
            --success: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --text: #475569;
            --border: #e2e8f0;
            --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            opacity: 0.05;
        }
        
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }
        
        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-section img {
            height: 45px;
            transition: transform 0.3s ease;
        }
        
        .logo-section img:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Navigation */
        nav {
            display: flex;
            gap: 0.5rem;
        }
        
        nav a {
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        nav a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        nav a:hover::before,
        nav a.active::before {
            width: 100%;
            height: 100%;
        }
        
        nav a:hover,
        nav a.active {
            color: white;
            transform: translateY(-2px);
        }
        
        nav a span {
            position: relative;
            z-index: 1;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            background:white;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: black;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: slideInLeft 1s ease-out;
        }
        
        .hero-content h1 span {
            display: block;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
            color: var(--secondary);
            margin-top: 0.5rem;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: black;
            margin-bottom: 2rem;
            animation: slideInLeft 1s ease-out 0.2s both;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Search Bar */
        .search-container {
            background: white;
            border-radius: 60px;
            display: flex;
            padding: 0.5rem;
            box-shadow: var(--shadow-lg);
            animation: slideInLeft 1s ease-out 0.4s both;
            max-width: 600px;
        }
        
        .search-container input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        
        .search-container button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .search-container button:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }
        
        /* Alert Box */
        .alert-box {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 2rem;
            color: black;
            animation: slideInLeft 1s ease-out 0.6s both;
        }
        
        .alert-box a {
            color: var(--secondary);
            font-weight: 600;
        }
        
        /* Hero Illustration */
        .hero-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Stats Section */
        .stats-section {
            padding: 4rem 2rem;
            background: white;
            position: relative;
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .stat-card:hover::before {
            top: -30%;
            right: -30%;
        }
        
        .stat-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .stat-card h3 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .stat-card p {
            color: var(--text);
            font-weight: 500;
        }
        
        /* News Grid */
        .news-section {
            padding: 4rem 2rem;
            background: var(--light);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .news-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        
        .news-card-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 1.5rem;
        }
        
        .news-card-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .news-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        .news-card-body {
            padding: 1.5rem;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Dataset Section */
        .dataset-section {
            padding: 4rem 2rem;
            background: white;
        }
        
        .dataset-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .dataset-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .dataset-card::before {
            content: '\f1c0';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.1);
            right: -20px;
            bottom: -20px;
            transform: rotate(-15deg);
        }
        
        .dataset-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .dataset-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .dataset-card p {
            color: var(--text);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .dataset-actions {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .dataset-btn {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .dataset-btn-pdf {
            background: var(--accent);
            color: white;
        }
        
        .dataset-btn-csv {
            background: var(--primary);
            color: white;
        }
        
        .dataset-btn-excel {
            background: var(--success);
            color: white;
        }
        
        .dataset-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            left: -150px;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite 2s;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: 3rem;
            color: white;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        .footer-section p,
        .footer-section ul {
            line-height: 1.8;
            opacity: 0.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scale-in {
            transform: scale(0.8);
            opacity: 0;
            animation: scaleIn 0.8s ease-out forwards;
        }
        
        @keyframes scaleIn {
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s ease;
                box-shadow: var(--shadow);
            }
            
            nav.active {
                left: 0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .search-container {
                flex-direction: column;
            }
            
            .search-container button {
                width: 100%;
            }
            
            .stats-grid,
            .news-grid,
            .dataset-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        /* Smooth Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        /* Loading Animation */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .skeleton-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .skeleton-title {
            height: 24px;
            width: 70%;
            margin-bottom: 1rem;
            border-radius: 4px;
        }
        
        .skeleton-text {
            height: 16px;
            width: 100%;
            margin-bottom: 0.5rem;
            border-radius: 4px;
        }
        
        .skeleton-text:last-child {
            width: 60%;
        }

 

    .hero1 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px 40px;
      background: white;
    }

    .hero1-text {
      max-width: 50%;
    }

    .hero1-text h1 {
      font-size: 52px;
      margin-bottom: 10px;
      font-family: "Poppins", "Roboto", sans-serif;
    }

    .hero1-text h1 span {
      color: var(--secondary);
    }

    .hero1-text p {
      font-size: 16px;
      color: #555;
    }

.search-bar {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.search-bar input {
  padding: 10px;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-cari, .btn-semua {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-cari {
  background-color: #045978;
  color: white;
}


.btn-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #045978;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-link:hover {
  background-color: #0056b3;
}

.illustration {
  flex: 1;
  min-width: 500px;
}

.alert-box {
  margin: 30px auto;
  max-width: 1100px; /* atau 100%, jika ingin full sejajar padding */
  background-color: #c5d2d6;
  color: #045978;
  padding: 15px 40px;
  border-left: 5px solid #045978;
  border-radius: 4px;
}

    .stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin: 30px 0;
      text-align: center;
    }

.stats-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease; /* baru */
}

.stats-box:hover {
  transform: translateY(-8px);                    /* sedikit naik */
  box-shadow: 0 15px 25px rgba(0,0,0,0.18);       /* bayangan lebih tebal */
  cursor: pointer;                                /* opsional: ubah kursor */
}

    .stats-box h2 {
      font-size: 28px;
      color: #045978;
    }

    .tabel-containerya {
      width: 30%;
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 10px;
      justify-content: center;
      align-items: center;
    }
    
        .tabel-container {
      width: 80%;
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 10px;
      justify-content: center;
      align-items: center;
    }
    
    table {
      border-collapse: collapse;
      width: 100%;
    }
    th, td {
      border: 1px solid #444;
      text-align: center;
      padding: 8px;
    }
    th {
      background-color: #0b5394;
      color: white;
    }
    .checkmark {
      color: green;
      font-size: 18px;
    }

.center-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}

.grid-berita {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 100px;
  padding: 100px
  transition: transform 0.25s ease, box-shadow 0.25s ease; /* baru */
}


.grid-berita:hover {
  transform: translateY(-8px);                    /* sedikit naik */
  box-shadow: 0 15px 25px rgba(0,0,0,0.18);       /* bayangan lebih tebal */
  cursor: pointer;                                /* opsional: ubah kursor */
}

@media (max-width: 992px) {
  .grid-berita {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-berita {
    grid-template-columns: 1fr;
  }
}


    .berita-card {
      background: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .judul-berita {
      font-size: 15px;
      font-weight: bold;
      color: #00529B;
      margin-bottom: 5px;
    }

    .tanggal-kategori {
      font-size: 12px;
      color: #777;
      margin-bottom: 10px;
    }

    .video-preview {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    .video-preview iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .konten-pendek {
      font-size: 13px;
      color: #333;
      text-align: left;
    }

    .konten-penuh {
      display: none;
      font-size: 13px;
      margin-top: 10px;
      text-align: left;
    }

.pengumuman-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 95px 0;
}

.pengumuman-flex .tabel-containerya {
  width: 80%;
  max-width: 400px;
  flex: 1;
}


.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}


    .container {
      display: flex;
      gap: 30px;
      padding: 30px;
    }

    .sidebar-opd {
      width: 260px;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .sidebar-opd h3 {
      font-size: 16px;
      margin-top: 0;
    }

    .sidebar-opd ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-opd li {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      cursor: pointer;
    }

    .sidebar-opd li:hover {
      background-color: #e0f2ff;
    }

    .badge-count {
      background: #555;
      color: white;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 10px;
    }

    .dataset-list {
      flex: 1;
    }

    .dataset-card {
      background: #fff;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: left;
      font-family: "Poppins", "Roboto", sans-serif;
    }

    .dataset-title {
      font-size: 16px;
      font-weight: bold;
      color: #00529b;
      margin-bottom: 5px;
      font-family: "Poppins", "Roboto", sans-serif;
    }

    .dataset-desc {
      font-size: 13px;
      color: #444;
      margin-bottom: 10px;
      font-family: "Poppins", "Roboto", sans-serif;
    }

    .btn {
      padding: 6px 12px;
      font-size: 13px;
      border-radius: 6px;
      font-weight: bold;
      color: white;
      text-decoration: none;
      margin-right: 10px;
      display: inline-block;
    }

    .btn-csv {
      background-color: #f0ad4e;
    }

    .btn-pdf {
      background-color: #d9534f;
    }

    .btn-excel {
      background-color: #5cb85c;
    }

    .btn-open {
      background-color: #28a745;
    }

    .loader {
      border: 6px solid #f3f3f3;
      border-top: 6px solid #3498db;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 1s linear infinite;
      margin: auto;
    }

    @keyframes spin {
      100% {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .sidebar-opd {
        width: 100%;
      }
    }
   

.animated-heading {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
