.table-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Poppins', sans-serif;
}

.table-title {
    text-align: center;
    font-size: 1.4rem;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #333;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-table thead tr {
    background: #8B0000;
    color: #fff;
}

.custom-table th,
.custom-table td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: center;
    font-size: 1rem;
}

.custom-table .location {
    font-weight: bold;
    background: #f8f8f8;
}

.highlight {
    background: #fce4e4;
}

/* Responsive */
@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 0.9rem;
        padding: 8px;
    }
}

td.tbl-head {
    text-align: left;
    background: #8e0038cc;
    color: #fff;
}

td.tbl-data {
    text-align: left;
    color: #8e0038;
    font-weight: 500;
}