/* Semua tab disembunyikan secara default */
.tab {
    display: none;
    border: 1px solid #ccc;
    border-top: none;
    padding: 10px;
    width:100%;
    background-color: white;
}

/* Container untuk tombol tab */
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
    background-color: #f1f1f1;
    margin-bottom: 0;
}

/* Gaya dasar tombol tab */
.tab-buttons button {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    margin-right: -1px; /* Tab saling menempel */
    z-index: 1;
    position: relative;
    top: 1px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover efek */
.tab-buttons button:hover:not(.disabled):not(.active) {
    background-color: #d6d6d6;
    color:blue;
}

/* Tab yang sedang aktif */
.tab-buttons button.active {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-bottom: 3px solid maroon; /* Garis bawah biru */
    color: #000;
    z-index: 2;
}


/* Tombol tab yang dinonaktifkan */
.tablink.disabled {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    border: 1px solid #ccc;
}
