/* ===== STRUKTUR BPD TABEL ===== */
.struktur-bpd {
    padding: 110px 20px;
    background: #f8f9fa;
}

.struktur-bpd h2 {
    text-align: center;
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-bottom: 30px;
}

/* TABEL WRAPPER, maksimal lebar */
.table-wrapper {
    overflow-x: auto;
    display: flex;
    justify-content: center;
}

table {
    width: 90%; /* batas lebar tabel */
    max-width: 1000px; /* maksimal agar tidak terlalu melebar */
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(90deg, #03386B, #045fb4);
    color: #fff;
}

th, td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(3, 56, 107, 0.08);
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .struktur-bpd h2 {
        font-size: 26px;
    }
    table {
        width: 100%;
        max-width: 100%;
    }
    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
}
