:root {
            --primary: #37003c;
            --secondary: #00ff85;
            --background: #f9f9f9;
            --text: #333;
            --card: #fff;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }

        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
        }

        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        header > a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }

        header > a:hover {
            color: var(--secondary);
        }

        header .links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        header .links a {
            display: flex;
            align-items: center;
        }

        header .links img {
            transition: opacity 0.3s;
        }

        header .links img:hover {
            opacity: 0.7;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo, .logo:visited {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
        }

        .logo span, .logo:visited span {
            color: var(--secondary);
        }

        .logo-first {
            color: white !important;
        }

        .logo-second {
            color: var(--secondary) !important;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .data-section {
            background-color: var(--card);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px var(--shadow);
        }

        .data-section h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .data-section p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        .table-controls {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .gameweek-selector {
            padding: 0.75rem;
            border: 2px solid var(--primary);
            border-radius: 5px;
            font-size: 1rem;
            background-color: white;
            cursor: pointer;
            flex: 1;
            min-width: 200px;
        }

        .search-box {
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            flex: 2;
            min-width: 250px;
        }

        .search-box:focus {
            outline: none;
            border-color: var(--secondary);
        }

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

        .table {
            display: none;
        }

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

        .data-table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
        }

        .data-table thead {
            background-color: var(--primary);
            color: white;
        }

        .data-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        .data-table tbody tr:hover {
            background-color: #f5f5f5;
        }

        .close-menu {
            display: none;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100%;
                background-color: var(--primary);
                padding: 2rem;
                transition: left 0.3s;
                z-index: 200;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 1rem 0;
            }

            .close-menu {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: none;
                border: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
            }

            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 150;
            }

            .overlay.active {
                display: block;
            }

            .table-controls {
                flex-direction: column;
            }

            .gameweek-selector,
            .search-box {
                width: 100%;
            }
        }
