        a{
            text-decoration: none;
            color: #333 !important;
        }
        .header {
            width: 100%;
            background-color: #001A6E;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            padding: 10px;
            text-align: start;
        }

        .fixtures, .results {
            background-color: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            margin-bottom: 10px;
        }

        .fixtures_details {
            text-align: center;
        }

        .table-container {
            background-color: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }

        .match-info {
            font-size: 16px;
            font-weight: bold;
            color: #c00;
            padding: 10px 0;
        }

        .positive {
            color: green;
            font-weight: bold;
        }
      
        .negative {
            color: red;
            font-weight: bold;
        }
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 10px 0;
        }

        .countdown-item {
            text-align: center;
        }
        
        .fixture-date {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .fixture-venue {
            font-size: 12px;
            font-style: italic;
            color: #555;
        }

        .number {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .label {
            font-size: 14px;
            color: #666;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #f2f2f2;
        }

        .team-name img {
            width: 24px;
            height: 16px;
            margin-right: 10px;
        }

        .table-footer {
            text-align: center;
            padding: 10px;
            font-size: 14px;
            background-color: #f9f9f9;
            color: #007bff;
        }

        .table-footer a {
            text-decoration: none;
            color: #666;
            font-weight: bold;
        }

        .table-footer a:hover {
            transform: translateY(-2.1rem);
        }

        .countdown-container {
            background-color: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .gallery-container {
            background-color: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: start;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .table-container {
                overflow-x: auto;
            }

            table {
                display: block;
                width: 100%;
            }

            th, td {
                white-space: nowrap;
            }
        }