/* Team Table Styles */
.team-table-container {
    padding: 60px 0;
    overflow-x: auto;
}

.slada-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 8px;
    /* Rounded corners for the container if overflow hidden */
    overflow: hidden;
}

.slada-table thead {
    background-color: var(--color-maroon);
    color: white;
}

.slada-table th,
.slada-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.slada-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.slada-table tbody tr:hover {
    background-color: #f9f9f9;
}

.slada-table tbody tr:last-child td {
    border-bottom: none;
}

.slada-table td {
    color: #333;
    font-size: 0.95rem;
}

.slada-table .designation-cell {
    font-weight: 600;
    color: var(--color-dark);
}

/* Responsive */
@media (max-width: 768px) {

    .slada-table th,
    .slada-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
}