/* Import Font dari Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset dan Pengaturan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f2f5;
}

/* ======================================================= */
/* ====== GAYA HALAMAN LOGIN & REGISTER BARU ====== */
/* ======================================================= */
.auth-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
}

.auth-wrapper {
    display: flex;
    width: 900px;
    max-width: 90%;
    min-height: 550px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-description {
    flex-basis: 50%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.auth-logo i {
    margin-right: 10px;
}

.auth-description h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.auth-description p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.auth-form-container {
    flex-basis: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-container h2 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.auth-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.auth-form-container input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.auth-form-container input:focus {
    border-color: #3498db;
    outline: none;
}

.auth-form-container button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.auth-form-container button:hover {
    background-color: #34495e;
}

.auth-switch {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}
.auth-switch a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 800px) {
    .auth-wrapper {
        flex-direction: column;
        min-height: auto;
        max-width: 450px;
    }
    .auth-description {
        display: none; /* Sembunyikan deskripsi di layar kecil agar form fokus */
    }
}

/* ======================================================= */
/* ====== GAYA HALAMAN UTAMA (DASHBOARD, DLL) ====== */
/* ======================================================= */

.sidebar {
    width: 260px;
    height: 100vh;
    background: #2c3e50;
    color: #ecf0f1;
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.sidebar.collapsed {
    left: -260px;
}

.sidebar-header {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid #34495e;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background-color: #34495e;
    border-left: 3px solid #3498db;
}

.sidebar-menu li a i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    transition: all 0.3s ease;
}

.main-content.expanded {
    margin-left: 0;
    width: 100%;
}

.top-bar {
    background: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.profile {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.profile span {
    margin-right: 1rem;
    font-weight: 500;
    color: #333;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ubah ke flex-start agar tidak selalu di tengah vertikal */
    padding: 2rem;
}

.main-content .container {
    width: 100%;
    max-width: 900px; /* Lebar maksimum container konten */
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* DROPDOWN MENU */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 101;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}
.dropdown-menu.show { display: block; }
.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}
.dropdown-menu a i { margin-right: 12px; color: #6c757d; }
.dropdown-menu a:hover { background-color: #f8f9fa; }

/* DROPDOWN SIDEBAR */
.sidebar-dropdown > a { display: flex; justify-content: space-between; align-items: center; }
.dropdown-icon { transition: transform 0.3s ease; font-size: 0.8rem; }
.sidebar-dropdown.open > a > .dropdown-icon { transform: rotate(180deg); }
.dropdown-content-sidebar { list-style: none; padding-left: 20px; background-color: #253544; display: none; }
.dropdown-content-sidebar li a { padding: 12px 15px 12px 28px; font-size: 0.9rem; }
.menu-admin-divider { height: 1px; background-color: #34495e; margin: 10px 15px; }

/* NOTIFIKASI */
.pesan-sukses, .pesan-error {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
}
.pesan-sukses { background-color: #d1e7dd; border-color: #a3cfbb; color: #0a3622; }
.pesan-error { background-color: #f8d7da; border-color: #f1aeb5; color: #58151c; }

/* SEMUA KOMPONEN LAINNYA */
/* Anda bisa tambahkan sisa gaya untuk tabel, kartu, game, dll di sini jika diperlukan */
/* Tapi gaya-gaya di atas adalah fondasi utama untuk semua halaman *//* Import Font dari Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset dan Pengaturan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f2f5;
}

/* ======================================================= */
/* ====== GAYA UNTUK HALAMAN LOGIN & REGISTER ====== */
/* ======================================================= */

body.login-register-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1121&q=80');
    background-size: cover;
    background-position: center;
}

/* Container dengan efek kaca untuk login/register */
.login-register-page .container {
    width: 400px;
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.login-register-page h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
}

.login-register-page label {
    display: block;
    margin-bottom: 0.5rem;
    color: #eee;
    font-weight: 300;
}

/* --- PERBAIKAN FORM DI SINI --- */
.login-register-page input[type="email"],
.login-register-page input[type="password"],
.login-register-page input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}

.login-register-page input::placeholder {
    color: #ccc;
}

.login-register-page input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.login-register-page button {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.login-register-page button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}
/* --- AKHIR PERBAIKAN --- */

.login-register-page p {
    text-align: center;
    margin-top: 1.5rem;
    color: #eee;
}

.login-register-page a {
    color: #8bb9fe;
    font-weight: 600;
    text-decoration: none;
}
.login-register-page a:hover {
    text-decoration: underline;
}


/* ======================================================= */
/* ====== GAYA UNTUK HALAMAN DASHBOARD ====== */
/* ======================================================= */

.sidebar {
    width: 260px;
    height: 100vh;
    background: #2c3e50;
    color: #ecf0f1;
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.sidebar.collapsed {
    left: -260px;
}

.sidebar-header {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid #34495e;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background-color: #34495e;
    border-left: 3px solid #3498db;
}

.sidebar-menu li a i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    transition: all 0.3s ease;
}

.main-content.expanded {
    margin-left: 0;
    width: 100%;
}

.top-bar {
    background: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.profile {
    display: flex;
    align-items: center;
}

.profile span {
    margin-right: 1rem;
    font-weight: 500;
    color: #333;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.content {
    padding: 2rem;
}

/* Container Bawaan untuk Dashboard */
.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ======================================================= */
/* ====== GAYA KARTU INFORMASI DASHBOARD ====== */
/* ======================================================= */
.main-content .container h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.stats-cards {
    display: flex;
    gap: 1.5rem; /* Jarak antar kartu */
    flex-wrap: wrap; /* Agar kartu turun ke bawah di layar kecil */
}

.card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    flex: 1; /* Membuat kartu email dan nomor akun membagi ruang secara merata */
    min-width: 250px; /* Lebar minimum kartu */
}

.card-icon {
    font-size: 2rem;
    color: #3498db;
    margin-right: 1.5rem;
    padding: 10px;
    border-radius: 8px;
    background-color: #eaf3fb;
}

.card-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.card-info h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Gaya khusus untuk kartu saldo yang kecil */
.small-card {
    flex: 0 1 300px; /* Membuat kartu ini tidak tumbuh, dengan lebar basis 300px */
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.small-card .card-icon {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.small-card .card-info p,
.small-card .card-info h4 {
    color: #fff;
}

.dashboard-info strong {
    color: #2c3e50;
}

button {
    padding: 0.7rem 1.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #34495e;
}

/* Notifikasi Sukses dan Error (umum) */
.pesan-sukses, .pesan-error {
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
}
.pesan-sukses {
    background-color: #d1e7dd;
    border-color: #a3cfbb;
    color: #0a3622;
}
.pesan-error {
    background-color: #f8d7da;
    border-color: #f1aeb5;
    color: #58151c;
}
/* --- Tambahan untuk Form Transfer --- */
.main-content .container label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.main-content .container input[type="text"],
.main-content .container input[type="number"] {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 0.5rem; /* Kurangi margin bawah agar lebih rapat dengan info nama */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
/* Gaya untuk menampilkan nama penerima */
.recipient-info {
    min-height: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    /* text-align: center; KITA PINDAHKAN DARI SINI */
}

.recipient-info-success {
    color: #0a3622;
    background-color: #d1e7dd;
    border: 1px solid #a3cfbb;
    padding: 10px 15px;
    text-align: center; /* <<< KE SINI */
}

.recipient-info-error {
    color: #58151c;
    background-color: #f8d7da;
    border: 1px solid #f1aeb5;
    padding: 10px 15px;
    text-align: center; /* <<< DAN KE SINI */
}
/* ======================================================= */
/* ====== GAYA FORM ELEGAN (Dashboard & Transfer) ====== */
/* ======================================================= */

.main-content .container label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Selector diperbarui untuk mencakup input password */
.main-content .container input[type="text"],
.main-content .container input[type="number"],
.main-content .container input[type="password"] {
    font-size: 1.1rem;
    color: #333;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.2rem; /* Disesuaikan agar seragam */
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efek 'Glow' diperbarui untuk mencakup input password */
.main-content .container input[type="text"]:focus,
.main-content .container input[type="number"]:focus,
.main-content .container input[type="password"]:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

/* Efek 'Glow' saat input di-klik atau aktif */
.main-content .container input[type="text"]:focus,
.main-content .container input[type="number"]:focus {
    outline: none;
    border-color: #3498db; /* Warna border berubah menjadi biru */
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1); /* Bayangan 'glow' lembut */
}


/* Gaya untuk menampilkan nama penerima (tetap sama) */
.recipient-info {
    min-height: 20px;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.recipient-info-success {
    color: #0f5132;
}

.recipient-info-error {
    color: #842029;
}
/* ======================================================= */
/* ====== GAYA TABEL RIWAYAT TRANSAKSI ====== */
/* ======================================================= */
.history-section {
    margin-top: 2.5rem; /* Jarak dari kartu informasi di atas */
}

.history-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.history-table-container {
    width: 100%;
    overflow-x: auto; /* Agar bisa di-scroll di layar kecil */
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.history-table {
    width: 100%;
    border-collapse: collapse; /* Menghilangkan jarak antar border sel */
}

.history-table th,
.history-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef; /* Garis pemisah antar baris */
}

.history-table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.history-table tbody tr:last-child td {
    border-bottom: none; /* Hapus border di baris terakhir */
}

.history-table tbody tr:hover {
    background-color: #f8f9fa; /* Efek hover pada baris */
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.status-kirim {
    background-color: #ffc107; /* Kuning */
    color: #333;
}

.status-terima {
    background-color: #198754; /* Hijau */
}

.amount-sent {
    color: #dc3545; /* Merah */
    font-weight: 600;
}

.amount-received {
    color: #198754; /* Hijau */
    font-weight: 600;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}
/* ======================================================= */
/* ====== GAYA DROPDOWN PROFIL ====== */
/* ======================================================= */
.profile {
    position: relative; /* Penting untuk posisi dropdown */
    cursor: pointer;
}

.dropdown-menu {
    display: none; /* Sembunyikan secara default */
    position: absolute;
    top: 55px; /* Jarak dari top-bar */
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 101;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* Tampilkan dropdown saat class 'show' ditambahkan oleh JavaScript */
.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.dropdown-menu a i {
    margin-right: 12px;
    color: #6c757d;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}
/* ======================================================= */
/* ====== GAYA HALAMAN PENGATURAN ====== */
/* ======================================================= */
.account-details .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.account-details .detail-item:last-child {
    border-bottom: none;
}

.account-details .detail-item span {
    color: #6c757d; /* Abu-abu untuk label */
}

.account-details .detail-item strong {
    color: #343a40; /* Hitam untuk nilai */
    font-weight: 500;
}

.form-separator {
    border: none;
    height: 1px;
    background-color: #dee2e6;
    margin: 2.5rem 0; /* Jarak atas dan bawah */
}
/* Gaya untuk field yang tidak bisa diedit di halaman pengaturan */
.readonly-field {
    /* Menyamakan gaya dengan input field aktif */
    font-size: 1.1rem;
    padding: 12px 15px;
    margin-bottom: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    width: 100%;
    
    /* Perbedaan untuk menandakan tidak bisa diubah */
    background-color: #e9ecef; /* Warna latar abu-abu */
    color: #6c757d; /* Warna teks abu-abu */
    cursor: not-allowed; /* Mengubah kursor saat diarahkan */
}
/* ======================================================= */
/* ====== GAYA UNTUK SALDO DI HALAMAN TRANSFER ====== */
/* ======================================================= */
.current-balance {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dee2e6;
}

.current-balance span {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.current-balance strong {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}
/* ======================================================= */
/* ====== GAYA UNTUK HEADER RIWAYAT & TOMBOL ====== */
/* ======================================================= */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.history-header h3 {
    margin-bottom: 0; /* Hapus margin bawah dari h3 */
}

.btn-view-all {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-view-all:hover {
    background-color: #dee2e6;
}
/* ======================================================= */
/* ====== GAYA UNTUK PAGINASI HALAMAN ====== */
/* ======================================================= */
.pagination {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}

.pagination a {
    color: #34495e;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #34495e;
    color: white;
    border: 1px solid #34495e;
}

.pagination a:hover:not(.active) {
    background-color: #f2f2f2;
}
/* Gaya untuk status withdrawal */
.status-badge.status-pending { background-color: #6c757d; }
.status-badge.status-approved { background-color: #198754; }
.status-badge.status-rejected { background-color: #dc3545; }

/* Gaya untuk tombol aksi admin */
.btn-action {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 5px;
}
.btn-approve { background-color: #198754; }
.btn-reject { background-color: #ffc107; color: #333; }
/* Gaya untuk select dropdown agar seragam */
.main-content .container select.form-input {
    font-size: 1.1rem;
    color: #333;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.2rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
.btn-action-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #34495e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-top: 1.5rem;
}

.btn-action-full:hover {
    background-color: #2c3e50;
}
.btn-action-full i {
    margin-right: 8px;
}
/* ======================================================= */
/* ====== GAYA DROPDOWN SIDEBAR ====== */
/* ======================================================= */
.sidebar-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.sidebar-dropdown.open > a > .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content-sidebar {
    list-style: none;
    padding-left: 20px; /* Sedikit menjorok ke dalam */
    background-color: #253544; /* Warna sedikit lebih gelap */
    display: none; /* Sembunyi secara default */
}

.dropdown-content-sidebar li a {
    padding: 12px 15px 12px 28px; /* Atur padding agar rapi */
    font-size: 0.9rem;
}