* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px; /* Jarak antara sidebar dan konten */
    padding: 0 20px;
}

/* Sidebar Styling */
.profile-sidebar {
    width: 280px;
    display: flex;
    flex-direction: column;
}

/* Container tabel agar bisa scroll di HP */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}
/* Styling Tabel Utama */
.bps-table {
    width: 100%;
    border-collapse: collapse; /* Ini kunci supaya garisnya jadi satu (kotak) */
    font-size: 14px;
    background-color: white;
}

/* Header Tabel (Abu-abu muda sesuai gambar) */
.bps-table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
    border: 1px solid #ccc; /* Garis kotak */
    padding: 12px;
    text-align: left;
}

/* Isi Tabel */
.bps-table td {
    border: 1px solid #ccc; /* Garis kotak */
    padding: 12px;
    vertical-align: top;
    color: #444;
    line-height: 1.5;
}

/* Efek warna selang-seling */
.bps-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Efek saat baris disorot mouse */
.bps-table tr:hover {
    background-color: #f1f1f1;
}

.nav-item {
    background: #f5f5f5; /* Warna background default abu-abu sangat muda */
    color: #0076a5;      /* Warna teks biru */
    border: none;
    border-top: 1px solid #d0d0d0;    /* Garis pembatas atas */
    border-left: 1px solid #d0d0d0;   /* Garis pembatas kiri */
    border-right: 1px solid #d0d0d0;  /* Garis pembatas kanan */
    
    padding: 12px 20px;  /* Spasi dalam tombol */
    text-align: left;    /* Teks RATA KIRI sesuai request */
    width: 100%;         /* Biar tombol lebarnya penuh */
    cursor: pointer;
    display: block;
    font-size: 14px;
    transition: 0.3s;
}

/* Trik buat "TUTUP" garis paling bawah */
.nav-item:last-child {
    border-bottom: 1px solid #d0d0d0; /* Garis ini cuma muncul di tombol paling akhir */
}

/* Style saat tombol Aktif/Diklik */
.nav-item.active {
    background-color: #006a9c; /* Biru gelap */
    color: white;              /* Teks jadi putih */
    font-weight: bold;
    border-color: #005a85;     /* Garis ikut gelap */
}

/* Efek hover biar lebih interaktif */
.nav-item:hover:not(.active) {
    background-color: #eeeeee;
}

/* Content Styling */
.main-content {
    flex: 1;
}

.content-title {
    color: #006a9c;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.content-body p {
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.content-body ul {
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}
