/* Heading Style */
h1 {
    font-size: 30px;
    color: white;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

/* Table Styling */
table {
    width: 80%;
    table-layout: fixed;
    text-align: center;
    border: 2px solid white;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse; /* Ensures proper layout */
}

/* Table Header Styling */
th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.3); /* Subtle header background */
}

/* Table Data Cell Styling */
td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-weight: 300;
    font-size: 20px;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle row separator */
}

/* Alternating Row Background for Better Readability */
tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Wrapper for Table Content */
.tbl-content {
    height: 100%;
    overflow-x: auto;
    margin-top: 0px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Body Styling */
body {
    background: -webkit-linear-gradient(left, #25c481, #25b7c4);
    background: linear-gradient(to left, #25c481, #25b7c4);
    font-family: 'Roboto', sans-serif;
}

/* Section Margin */
section {
    margin: 50px;
}
