.table-section {
    background: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}
.table-container {
    width: fit-content;
    max-width: 1000px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Soft shadow */
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

thead {
    background-color: #f4f4f4;
}

th {
    text-align: center;
    padding: 15px;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

td {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
    color: #444;
    font-size: 15px;
}

/* Row Hover Effect */
tr:hover {
    background-color: #fafafa;
}

/* Rate Column Highlight */
td:nth-child(3) {
    font-weight: bold;
    color: #2c3e50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    table { font-size: 12px; }
    th, td { padding: 10px 5px; }
}

@media (max-width: 480px) {
    .table-container { padding: 15px; margin-left: 10rem; }
    table { font-size: 8px; }
    th, td { padding: 4px 4px; }
    
}