/* === Tabs === */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 25px;
}

.tab-btn {
    padding: 10px 18px;
    border: none;
    background: #EFF7FA;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.tab-btn.active {
    background: #0077b6;
    color: #fff;
}

/* === Tab Content === */
.tab-content {
    margin-top: 20px;
    display: none;
}

.tab-content.active {
    display: block;
}

/* === Table === */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
    vertical-align: top;
    color: #000000;
}

th {
    background-color: #EFF7FA;
}

img {
    width: 32px;
    cursor: pointer;
}

/* === Detail Row === */
.detail {
    display: none;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.3;
}
