#tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-bottom: 2px solid #ccc;
    background-color: #f9f9f9;
}

.tab-button {
    background: none;
    border: none;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    font-weight: bold;
    border-color: black;
}

.tab-panel {
    padding: 20px;
    text-align: center;
}
.tab-panel table {
    margin: 0 auto 20px auto; /* ✅ centers each table individually with spacing */
}
.tab-panel.hidden {
    display: none;
}