/* WRAPPER */

#akun-page {
    width: 100%;            /* FULL WIDTH */
    max-width: none;        /* Hapus limit 430px */
    margin: 0;
    padding-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    background: #f3f3f3;
}


/* ================= HEADER ================= */
.akun-header {
    background: #0B66FF;
    padding: 25px 20px 90px;
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.akun-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.akun-switch {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.akun-switch .tab {
    flex: 1;
    padding: 8px 0;
    border-radius: 20px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-weight: 500;
}

.akun-switch .tab.active {
    background: white;
    color: #0B66FF;
}

/* ================= PROFILE CARD ================= */
.profile-card {
    width: 92%;
    margin: -70px auto 20px;
    background: #fff;
    padding: 8px 0; /* disamakan dengan card lainnya */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    gap: 16px;
}

/* FOTO PROFIL */
.photo {
    width: 60px;
    height: 60px;
    background: #e6e6e6;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 20px; /* agar foto tidak terlalu mepet kiri */
}

/* WRAPPER TEXT */
.profile-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* TEKS */
.profile-text .name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.profile-text .phone,
.profile-text .email {
    font-size: 12px;
    color: #666;
}

/* ICON EDIT / ARROW */
.edit-icon {
    margin-left: auto;
    margin-right: 20px;
    font-size: 20px;
    color: #333;
    opacity: 0.7;
}

/* ================= SECTION TITLES ================= */
.section-title {
    margin: 18px 20px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

/* ================= MENU BOX ================= */
.menu-box {
    width: 90%;
    margin: 0 auto 15px;
    background: white;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.item {
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F1F1;
}

.item:last-child {
    border-bottom: none;
}

.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left img {
    width: 22px;
}

.badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    font-weight: 600;
}

.bronze { background: #c67c31; }

.saldo {
    font-weight: 600;
    color: #007bff;
}

.arrow {
    font-size: 20px;
    color: #ccc;
}
.right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* ================= LOGOUT BUTTON ================= */
.btn-logout {
    width: 88%;
    display: block;
    margin: 25px auto;
    padding: 12px 0;
    background: #0B66FF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}
