        .header {
            background-color: #001A6E;
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 10px;
        }

        .positive {
            color: green;
            font-weight: bold;
        }
      
        .negative {
            color: red;
            font-weight: bold;
        }

        .main_table_container {
            padding: 20px;
        }

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

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

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

        th {
            background-color: #f2f2f2;
            font-size: 14px;
            font-weight: bold;
        }

        .team-name {
            display: flex;
            align-items: center;
        }

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

        tr > .positive {
            color: green;
            font-weight: bold;
        }

        tr > .negative {
            color: red;
            font-weight: bold;
        }

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

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

        .fixtures_details {
            text-align: center;
        }

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

        .latest_results img {
            width: 80px;
        }

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

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

        .positive {
            color: green;
            font-weight: bold;
        }
    
        .negative {
            color: red;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .latest_results {
                flex-direction: column;
                text-align: center;
            }

            .latest_results img {
                margin-bottom: 10px;
            }

            .fixtures_details {
                margin-bottom: 10px;
            }

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

            table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }

            th, td {
                font-size: 12px;
            }
            
        }

        @media (max-width: 576px) {
            .header {
                font-size: 16px;
                padding: 8px;
            }

            .number {
                font-size: 20px;
            }

            .match-info {
                font-size: 14px;
            }
        }