/* Table Wrapper */
.tables {
    margin: 25px 0 40px;
    overflow-x: auto;
}

/* Table Base */
.tables table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Table Header */
.tables thead th {
    background: #00214F;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 12px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.tables thead th:last-child {
    border-right: none;
}

/* Table Body */
.tables tbody td {
    padding: 13px 12px;
    font-size: 14px;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #00214F;
}

/* Zebra Striping */
.tables tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* Hover Effect */
.tables tbody tr:hover {
    background: #fff4ea;
    transition: 0.3s;
}

/* Table Heading */
h2 {
    font-size: 24px;
    font-weight: 700;
    color: #00214F;
    margin: 35px 0 15px;
    position: relative;
    padding-left: 14px;
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 70%;
    background: #00214F;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tables thead th,
    .tables tbody td {
        font-size: 13px;
        padding: 10px;
    }

    h2 {
        font-size: 20px;
    }
}
