/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #e9f7e7; /* Soft light green */
    color: #333;
    margin: 0;
    padding: 20px;
}


h2 {
    font-size: 2.5rem; /* Larger font size */
    font-weight: bold; /* Bold text */
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #6a11cb, #2575fc); /* Modern gradient */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Highlighted Live Game Results */
h2.text-primary {
    background: linear-gradient(90deg, #ff416c, #ff4b2b); /* Highlight color */
    font-size: 2.8rem; /* Larger for emphasis */
    font-weight: 700; /* Bolder */
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

table th, table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 1.1rem; /* Increased font size for better readability */
    font-weight:bold; /* Bold font for table content */
     
}

/* Table Header Styles */
table th {
    background-color: #2575fc;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #2f6fe1;
}

/* Zebra Striping and Hover Effects */
table tr:nth-child(even) {
    background-color: #f9fafb;
}

table tr:hover {
    background-color: #e5f5ff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Scrollable Table */
.scrollable-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin-top: 20px;
}

/* Table Caption Styles */
table caption {
    font-size: 1.8rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}

/* Mobile-First Design */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    h2 {
        font-size: 2rem; /* Adjusted for mobile */
        padding: 12px;
    }

    table th, table td {
        padding: 15px; /* Larger padding for touch devices */
        font-size: 1rem; /* Adjusted font size */
    }

    .scrollable-table {
        margin-top: 15px;
    }
}

/* Button Styles */
button {
    background-color: #2575fc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.1rem; /* Larger font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6a11cb;
}

/* Add a simple shadow effect to tables */
table {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Improve readability and user interaction */
table tr:hover td {
    color: #2575fc;
    font-weight: 600;
}

    .chart-section {
        background-color: #f9f9f9;
        padding: 30px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
    }

    .chart-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .chart-form h2 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .chart-form label {
        font-size: 1rem;
        color: #555;
        margin-right: 10px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .chart-form select, .chart-form input[type="submit"] {
        padding: 10px;
        font-size: 1rem;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ddd;
        background-color: #fff;
        color: #333;
    }

    .chart-form input[type="submit"] {
        background-color: #007bff;
        color: white;
        cursor: pointer;
        border: none;
        transition: background-color 0.3s;
    }

    .chart-form input[type="submit"]:hover {
        background-color: #0056b3;
    }

    @media (max-width: 768px) {
        .chart-form {
            width: 90%;
        }
    }

 .SATTAKING {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

