body {
     font-family: 'Poppins', sans-serif !important;
    background: #f7f9fc;
    margin: 0;
    padding: 20px;
}

.table-container {
    max-width: 1000px;
    margin: auto;
    overflow-x: auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}


th, td {
    padding: 14px;
    text-align: left;
    font-size: 17px; /* change this */
}


table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 14px;
    text-align: left;
}

th {
    background: #2e7dff;
    color: #fff;
    font-weight: 600;
}

tr:nth-child(even) {
    background: #f2f6ff;
}

td {
    color: #333;
}

.highlight {
    font-weight: bold;
    color: #2e7dff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 10px;
    }

    td {
        padding: 10px;
        text-align: right;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
        color: #555;
    }
    
    
   
    
}