table.dataTable .dtr-details {
    /* padding-left: 1.5rem !important; */
}
table.dataTable .dtr-details .dtr-title {
    min-width: 120px;
    display: inline-block;
}
table.dataTable .dtr-details .dtr-data {
    padding-left: 3rem !important;
    display: inline-block;
}

.dataTables_length {
    padding: 0.5rem 1rem;
}

/* Search box */
.dataTables_filter {
    padding: 0.5rem 1rem;
}

/* Info (showing x to y of z entries) */
.dataTables_info {
    padding: 0.5rem 1rem;
}

/* Pagination */
.dataTables_paginate {
    padding: 0.5rem 1rem;
}

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

            body {
                font-family: 'Inter', system-ui, -apple-system, sans-serif;
                line-height: 1.6;
                color: #333;
                background: #f8fafc;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* Header */
            .header {
                background: #fff;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                position: sticky;
                top: 0;
                z-index: 100;
            }

            .nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 0;
            }

            .logo {
                font-size: 1.5rem;
                font-weight: 700;
                color: #2563eb;
            }

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

            .nav-link {
                text-decoration: none;
                color: #64748b;
                font-weight: 500;
                transition: color 0.3s;
            }

            .nav-link:hover {
                color: #2563eb;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s;
                display: inline-block;
                border: none;
                cursor: pointer;
            }

            .btn-primary {
                background: #2563eb;
                color: white;
            }

            .btn-primary:hover {
                background: #1d4ed8;
            }

            /* Hero */
            .hero {
                background: #fff;
                border-bottom: 1px solid #e2e8f0;
                padding: 3rem 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 0.75rem;
                color: #1e293b;
            }

            .hero p {
                font-size: 1.125rem;
                color: #64748b;
                max-width: 700px;
                margin: 0 auto;
            }

            /* Welcome Message */
            .welcome-box {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 3rem;
                border-radius: 16px;
                margin-bottom: 3rem;
                text-align: center;
            }

            .welcome-box h2 {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 1rem;
            }

            .welcome-box p {
                font-size: 1.125rem;
                opacity: 0.95;
                line-height: 1.8;
            }

            .welcome-icon {
                font-size: 3rem;
                margin-bottom: 1rem;
            }

            /* Main Content */
            .main-content {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2.5rem;
                font-weight: 700;
                text-align: center;
                margin-bottom: 3rem;
                color: #1e293b;
            }

            /* Featured Article */
            .featured-card {
                background: white;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                margin-bottom: 3rem;
            }

            .featured-image {
                width: 100%;
                height: 300px;
                object-fit: cover;
            }

            .featured-content {
                padding: 2rem;
            }

            .featured-title {
                font-size: 1.75rem;
                font-weight: 700;
                margin-bottom: 1rem;
                line-height: 1.3;
            }

            .featured-title a {
                text-decoration: none;
                color: inherit;
            }

            .featured-title a:hover {
                color: #2563eb;
            }

            /* Articles Grid */
            .articles-grid {
                display: grid;
                gap: 2rem;
                margin-bottom: 4rem;
            }

            .article-card {
                background: white;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                transition: transform 0.3s, box-shadow 0.3s;
            }

            .article-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            }

            .article-image {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }

            .article-content {
                padding: 1.5rem;
            }

            .article-title {
                font-size: 1.25rem;
                font-weight: 600;
                margin-bottom: 0.5rem;
                line-height: 1.4;
            }

            .article-title a {
                text-decoration: none;
                color: inherit;
            }

            .article-title a:hover {
                color: #2563eb;
            }

            /* Meta & Utilities */
            .article-meta {
                display: flex;
                gap: 1rem;
                align-items: center;
                margin-bottom: 1rem;
                font-size: 0.875rem;
                color: #64748b;
            }

            .article-excerpt {
                color: #64748b;
                margin-bottom: 1.5rem;
                line-height: 1.7;
            }

            .read-more {
                color: #2563eb;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.875rem;
            }

            .read-more:hover {
                text-decoration: underline;
            }

            .categories {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }

            .category-tag {
                background: #e2e8f0;
                color: #475569;
                padding: 0.5rem 1rem;
                border-radius: 20px;
                font-size: 0.875rem;
                font-weight: 500;
            }

            /* Footer */
            .footer {
                background: #1e293b;
                color: white;
                padding: 3rem 0;
                text-align: center;
            }

            /* Responsive */
            @media (min-width: 768px) {
                .articles-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .hero h1 {
                    font-size: 4rem;
                }

                .featured-card {
                    display: flex;
                }

                .featured-image {
                    width: 50%;
                    height: auto;
                }

                .featured-content {
                    width: 50%;
                }
            }

            @media (min-width: 1024px) {
                .articles-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
