/* ==========================================
   1. RESET & CSS VARIABLES (TEMA LOGO)
========================================== */
:root {
    /* Palet Utama dari Logo NH Trans */
    --gold-primary: #C5A028;     /* Emas Logo */
    --gold-hover: #A6851E;       /* Emas Gelap untuk Hover */
    --gold-light: #Fdf8e7;       /* Emas Sangat Muda untuk Background Icon */
    --dark-main: #2D2D2D;        /* Abu-abu Gelap / Charcoal */
    --dark-deep: #1A1A1A;        /* Hitam Pekat */
    --silver-bg: #F4F7F6;        /* Latar Belakang Dashboard */
    --silver-border: #E8E8E8;    /* Garis Tepi */
    --text-main: #333333;        /* Teks Utama */
    --text-muted: #888888;       /* Teks Redup */
    
    /* Status Colors */
    --success: #2e7d32;
    --success-bg: #e8f5e9;
    --danger: #c62828;
    --danger-bg: #ffebee;
    --warning: #f57f17;
    --warning-bg: #fff8e1;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--silver-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ==========================================
   2. SCREEN LOGIN (TEMA GELAP ELEGAN)
========================================== */
.full-screen-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(135deg, var(--dark-deep) 0%, var(--dark-main) 100%);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
}
.full-screen-wrapper.active { opacity: 1; visibility: visible; }

.login-card {
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    border-radius: 24px; padding: 45px 35px; width: 100%; max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-bottom: 5px solid var(--gold-primary);
}

.brand-header { text-align: center; margin-bottom: 35px; }
.brand-header h2 { font-size: 32px; font-weight: 800; color: var(--dark-main); letter-spacing: 1px; margin: 0; }
.brand-header h2 span { color: var(--gold-primary); font-weight: 400; }
.brand-header p { color: var(--text-muted); font-size: 13px; margin-top: 2px; text-transform: uppercase; letter-spacing: 2px; }

/* Input Base */
.input-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.input-group label { font-size: 13px; color: var(--text-main); font-weight: 600; margin-bottom: 8px; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.icon-left { position: absolute; left: 15px; color: #aaa; transition: 0.3s; }
.icon-right { position: absolute; right: 15px; color: #aaa; cursor: pointer; }
.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
    width: 100%; padding: 14px 15px 14px 45px; border: 1.5px solid var(--silver-border);
    border-radius: 12px; font-size: 14px; outline: none; background: #fafafa; transition: 0.3s; font-family: inherit;
}
.input-wrapper:focus-within .icon-left { color: var(--gold-primary); }
.input-wrapper input:focus, .input-wrapper select:focus { 
    border-color: var(--gold-primary); background: #fff; box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.1); 
}

/* Buttons */
.btn-primary {
    width: 100%; padding: 15px; background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
    cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: 0.3s;
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(197, 160, 40, 0.4); }
.btn-primary:disabled { background: #e0e0e0; color: #999; box-shadow: none; cursor: not-allowed; transform: none; }

.error-alert { background: var(--danger-bg); color: var(--danger); padding: 12px 15px; border-radius: 10px; font-size: 13px; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; border: 1px solid #ffcdd2; }

/* ==========================================
   3. LAYOUT UTAMA (HEADER & MAIN)
========================================== */
.app-header {
    position: fixed; top: 0; left: 0; width: 100%; height: 65px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 25px; z-index: 100; box-shadow: 0 2px 15px rgba(0,0,0,0.03); border-bottom: 1px solid var(--silver-border);
}
.app-header h1 { font-size: 18px; font-weight: 700; color: var(--dark-main); }
.app-main { padding-top: 85px; padding-bottom: 90px; min-height: 100vh; }
.view-section { display: none; padding: 0 20px; animation: fadeIn 0.4s ease; }
.view-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   4. NAVIGASI BAWAH (BOTTOM NAV)
========================================== */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
    background: #fff; display: flex; justify-content: space-around; align-items: center;
    z-index: 1000; box-shadow: 0 -10px 30px rgba(0,0,0,0.05); border-radius: 24px 24px 0 0;
}
.nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); cursor: pointer; width: 60px; transition: 0.3s; }
.nav-item i { font-size: 20px; margin-bottom: 5px; transition: 0.3s; }
.nav-item span { font-size: 10px; font-weight: 600; }
.nav-item.active { color: var(--gold-primary); }
.nav-item.active i { transform: translateY(-3px); }

/* Floating Action Button (Jadwal) */
.fab-wrapper { position: relative; top: -20px; }
.fab-button {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-main), var(--dark-deep));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s; border: 3px solid #fff;
}
.fab-wrapper i { color: var(--gold-primary) !important; font-size: 22px; margin-bottom: 0; }
.fab-wrapper span { margin-top: 8px; }

/* ==========================================
   5. NOTIFIKASI DROPDOWN (PREMIUM)
========================================== */
.notif-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.3); backdrop-filter: blur(3px); z-index: 990; display: none; opacity: 0; transition: 0.3s; }
.notif-overlay.active { display: block; opacity: 1; }
.notification-wrapper { position: relative; cursor: pointer; z-index: 1000; }
.notification-wrapper:hover > i { color: var(--gold-primary) !important; transform: scale(1.1); }
.badge-notif { position: absolute; top: -5px; right: -5px; background: #c62828; color: white; font-size: 9px; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; border: 2px solid #fff; box-shadow: 0 3px 8px rgba(198, 40, 40, 0.4); }

/* Kotak Dropdown Utama */
.notif-dropdown { 
    position: absolute; top: 45px; right: -10px; width: 340px; 
    background: #fff; border-radius: 16px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
    display: none; overflow: hidden; z-index: 9999;
    transform: translateY(-10px); opacity: 0; transition: all 0.3s ease;
    border: 1px solid var(--silver-border);
}
.notif-dropdown.active { display: block; transform: translateY(0); opacity: 1; }

.notif-header { 
    padding: 15px 20px; background: var(--dark-main); 
    font-weight: 700; font-size: 14px; color: #fff; 
    display: flex; justify-content: space-between; align-items: center; 
}
.notif-header i { color: var(--gold-primary); font-size: 16px; }

/* Area Daftar Pesan */
#notif-list { max-height: 320px; overflow-y: auto; }
#notif-list::-webkit-scrollbar { width: 6px; }
#notif-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }

/* Gaya Per-Item Notifikasi */
.notif-item { 
    padding: 16px 20px; 
    border-bottom: 1px solid var(--silver-border); 
    cursor: pointer; transition: background 0.2s ease;
    display: flex; flex-direction: column; gap: 6px;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--gold-light); }

.notif-item h6 { 
    margin: 0; font-size: 14px; color: var(--dark-main); 
    font-weight: 800; display: flex; align-items: center;
}
.notif-item h6::before {
    content: '\f0f3'; /* Icon Lonceng FontAwesome */
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free'; 
    font-weight: 900;
    color: var(--gold-primary);
    margin-right: 12px;
    font-size: 14px;
}
.notif-item p { 
    margin: 0 0 0 26px; /* Sejajar dengan teks nama, loncati ikon */
    font-size: 12px; color: var(--text-muted); 
    line-height: 1.4; font-weight: 500;
}

.notif-empty { padding: 35px 20px; text-align: center; color: #999; font-size: 13px; }

.notif-footer { 
    padding: 15px; text-align: center; font-size: 13px; 
    color: var(--gold-hover); font-weight: 800; cursor: pointer; 
    background: #fafafa; border-top: 1px solid var(--silver-border);
    transition: 0.3s;
}
.notif-footer:hover { background: #f1f3f5; color: var(--dark-main); letter-spacing: 0.5px; }
/* ==========================================
   6. VIEW: HOME DASHBOARD
========================================== */
.welcome-banner {
    background: linear-gradient(135deg, var(--dark-main), var(--dark-deep));
    border-radius: 20px; padding: 25px; color: #fff; display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); position: relative; overflow: hidden;
}
.welcome-banner::after { content: ''; position: absolute; top: -50px; right: -20px; width: 150px; height: 150px; background: rgba(255,255,255,0.03); border-radius: 50%; }
.welcome-text { z-index: 2; }
.welcome-text h2 { margin: 0 0 5px 0; font-size: 20px; font-weight: 700; color: var(--gold-primary) !important; }
.welcome-text p { margin: 0; font-size: 12px; opacity: 0.7; font-weight: 500; }
.welcome-img { z-index: 2; font-size: 40px; color: var(--gold-primary); opacity: 0.2; }

.home-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.home-section-header h4 { margin: 0; font-size: 16px; color: var(--dark-main); font-weight: 800; }
.link-lihat-semua { font-size: 12px; color: var(--gold-hover); font-weight: 700; cursor: pointer; }

/* Quick Actions */
.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.action-item { background: #fff; border-radius: 16px; padding: 15px 10px; text-align: center; border: 1px solid var(--silver-border); box-shadow: 0 8px 15px rgba(0,0,0,0.02); cursor: pointer; transition: 0.3s; }
.action-item:hover { transform: translateY(-4px); box-shadow: 0 12px 20px rgba(0,0,0,0.06); border-color: var(--gold-primary); }
.action-icon { width: 45px; height: 45px; margin: 0 auto 10px auto; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.3s; background: var(--gold-light); color: var(--gold-hover); }
.action-item span { font-size: 11px; font-weight: 700; color: var(--text-main); line-height: 1.3; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-mini-card { background: #fff; border-radius: 16px; padding: 15px 12px; border: 1px solid var(--silver-border); text-align: center; box-shadow: 0 8px 15px rgba(0,0,0,0.02); }
.stat-mini-card p { margin: 0 0 5px 0; font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }
.stat-mini-card h3 { margin: 0; font-size: 15px; color: var(--dark-main); font-weight: 800; }

.alert-box { background: var(--danger-bg); border-left: 4px solid var(--danger); border-radius: 12px; padding: 15px; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.alert-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--danger); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.alert-text { flex: 1; font-size: 12px; color: var(--danger); line-height: 1.4; }
.btn-alert { background: var(--danger); color: #fff; border: none; padding: 6px 12px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 11px; }

/* Mini Agenda */
.mini-agenda-list { display: flex; flex-direction: column; gap: 10px; }
.agenda-mini-card { background: #fff; border-radius: 14px; padding: 15px; border: 1px solid var(--silver-border); border-left: 4px solid var(--gold-primary); box-shadow: 0 4px 15px rgba(0,0,0,0.02); display: flex; flex-direction: column; gap: 5px; }
.agenda-mini-card.tour { border-left-color: var(--dark-main); }
.agenda-mini-card h5 { margin: 0; font-size: 14px; color: var(--dark-main); font-weight: 700; }
.agenda-mini-card p { margin: 0; font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }


/* ==========================================
   7. UI MODAL & FORM UMUM (PREMIUM)
========================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: #fff; width: 90%; max-width: 500px; border-radius: 24px; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); transform: translateY(30px); transition: all 0.4s ease;
    max-height: 90vh; display: flex; flex-direction: column;
}
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-header { background: var(--dark-main); color: #fff; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--gold-primary);}
.modal-header h3 { font-size: 16px; font-weight: 700; margin: 0; }
.close-modal { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; font-size: 14px; cursor: pointer; transition: 0.2s; }
.close-modal:hover { background: var(--danger); transform: rotate(90deg); }
.modal-body { padding: 25px; overflow-y: auto; }

/* Custom Switcher */
.form-switcher { display: flex; background: var(--silver-bg); border-radius: 12px; padding: 5px; margin-bottom: 20px; border: 1px solid var(--silver-border); }
.switch-btn, .switch-order-btn { flex: 1; padding: 10px; border: none; background: transparent; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.switch-btn.active, .switch-order-btn.active { background: #fff; color: var(--gold-hover); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* Input Seragam (Tanpa Icon Left) */
.modal-body .input-group { margin-bottom: 15px; }
.modal-body .input-group label { display: block; font-size: 12px; color: var(--text-main); margin-bottom: 6px; font-weight: 600; }
.modal-body .input-group input, .modal-body .input-group select {
    width: 100%; padding: 12px 15px; border: 1.5px solid var(--silver-border); border-radius: 10px;
    font-size: 13px; outline: none; background: #fff; transition: 0.3s; font-family: inherit;
}
.modal-body .input-group input:focus, .modal-body .input-group select:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.1); }
.flex-row { display: flex; gap: 15px; }

/* Style Khusus Input File */
input[type="file"] { padding: 8px; background: var(--silver-bg); border: 2px dashed var(--silver-border); }
input[type="file"]::file-selector-button { background: var(--dark-main); color: #fff; border: none; padding: 6px 12px; border-radius: 6px; font-weight: 600; cursor: pointer; margin-right: 10px; transition: 0.3s; }
input[type="file"]::file-selector-button:hover { background: var(--gold-primary); }


/* ==========================================
   8. LAYANAN & SERVICE CARD
========================================== */
.service-header { margin-bottom: 20px; }
.service-header h2 { font-size: 22px; color: var(--dark-main); font-weight: 800; margin-bottom: 15px; }
.tab-container { display: flex; background: #fff; border-radius: 12px; padding: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid var(--silver-border); }
.tab-btn, .tab-btn-sched, .tab-btn-prof { flex: 1; padding: 12px; border: none; background: transparent; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.tab-btn.active, .tab-btn-sched.active, .tab-btn-prof.active { background: var(--gold-light); color: var(--gold-hover); }

.service-list { display: flex; flex-direction: column; gap: 15px; padding-bottom: 30px; }
.service-card { background: #fff; border-radius: 16px; display: flex; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); padding: 12px; align-items: center; border: 1px solid var(--silver-border); transition: 0.3s; }
.service-card:hover { transform: translateY(-3px); border-color: var(--gold-primary); }
.service-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; margin-right: 15px; background: var(--silver-bg); }
.service-info { flex: 1; }
.service-info h4 { font-size: 15px; color: var(--dark-main); margin-bottom: 3px; font-weight: 700; }
.service-info p { font-size: 11px; color: var(--text-muted); }
.service-price { font-size: 14px; font-weight: 800; color: var(--gold-hover); margin-top: 5px; }
.service-actions { display: flex; flex-direction: column; gap: 8px; }
.btn-action { width: 32px; height: 32px; border-radius: 8px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.btn-edit { background: var(--gold-light); color: var(--gold-hover); }
.btn-delete { background: var(--danger-bg); color: var(--danger); }

.btn-floating-add {
    position: fixed; bottom: 90px; right: 20px; background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
    color: #fff; border: none; border-radius: 30px; padding: 15px 25px; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(197, 160, 40, 0.3); cursor: pointer; z-index: 100;
}

/* ==========================================
   STYLE UPLOAD & PREVIEW FOTO (MODAL LAYANAN)
========================================== */

/* Sembunyikan input file bawaan browser yang kaku */
.file-upload-wrapper input[type="file"] {
    display: none;
}

/* Desain Area Klik (Label) untuk Upload */
.btn-file-upload {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--silver-bg);
    border: 2px dashed #ccc;
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-file-upload:hover {
    background: var(--gold-light);
    border-color: var(--gold-primary);
    color: var(--gold-hover);
}

.btn-file-upload i {
    margin-right: 8px;
    font-size: 16px;
}

/* Kontainer untuk jejeran foto */
.photo-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

/* Desain Foto Thumbnail (Kotak Membulat) */
.photo-thumb {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-thumb:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--gold-primary);
}

/* Teks Bantuan di bawah upload */
.file-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}
/* ==========================================
   9. OVERHAUL: KARTU PESANAN (RAPI & ELEGAN)
========================================== */
.sched-content { display: none; animation: fadeIn 0.3s ease; }
.sched-content.active { display: block; }
.filter-order { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

#order-list { padding: 5px; display: flex; flex-direction: column; gap: 15px; }
.order-card {
    background: #ffffff; border-radius: 16px; padding: 22px; margin-bottom: 0;
    position: relative; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid var(--silver-border); transition: all 0.3s ease;
}
.order-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); border-color: var(--gold-light); }

/* Garis Warna Pembeda Kiri */
.order-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; }
.order-card.type-mobil::before { background: var(--gold-primary); }
.order-card.type-tour::before { background: var(--dark-main); }
.order-card.status-cancelled::before { background: #e0e0e0 !important; }

/* Header Card */
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid var(--silver-bg); }
.order-id { font-size: 12px; font-weight: 700; color: var(--text-muted); font-family: monospace; letter-spacing: 0.5px; }
.badge-status { padding: 6px 12px; border-radius: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-pending { background: var(--warning-bg); color: var(--warning); }
.badge-confirmed { background: var(--success-bg); color: var(--success); }
.badge-cancelled { background: var(--danger-bg); color: var(--danger); }

/* Body Card */
.order-body h4 { font-size: 18px; font-weight: 800; color: var(--dark-main); margin-bottom: 18px; }
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.info-item { font-size: 12px; color: var(--text-main); display: flex; align-items: center; gap: 10px; font-weight: 500;}

/* Ikon Kecil Kotak */
.info-item i {
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 13px; flex-shrink: 0; background: var(--silver-bg); color: var(--text-muted);
}
.info-item i.fa-car { color: var(--gold-hover); background: var(--gold-light); }
.info-item i.fa-umbrella-beach { color: #fff; background: var(--dark-main); }
.info-item i.fa-calendar-alt { color: var(--danger); background: var(--danger-bg); }
.info-item i.fa-wallet { color: var(--success); background: var(--success-bg); }
.info-item i.fa-phone { color: var(--warning); background: var(--warning-bg); }

/* Harga di Kanan */
.order-price-container { display: flex; justify-content: flex-end; align-items: flex-end; flex-direction: column; }
.order-price { font-size: 22px; font-weight: 800; color: var(--dark-main); line-height: 1; }

/* Action Buttons (Rounded Rectangle) */
/* --- Modifikasi Kontainer Tombol --- */
.order-actions-container { 
    margin-top: 20px; padding-top: 15px; border-top: 1px dashed var(--silver-border); 
    display: flex; gap: 10px; flex-wrap: wrap; /* Tambahan flex-wrap agar rapi jika tombol banyak */
}

/* --- Tombol Pelunasan Baru --- */
.btn-lunas { 
    background-color: var(--dark-main); 
    color: #fff; 
    border: 1px solid var(--dark-deep); 
}
.btn-lunas:hover { 
    background-color: var(--dark-deep); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    color: #fff;
}
.btn-pill {
    flex: 1; padding: 10px 5px; border-radius: 10px; font-size: 11px; font-weight: 700; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s ease; text-decoration: none; white-space: nowrap;
}
.btn-pill i { font-size: 13px; }
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.btn-reject { background-color: var(--danger-bg); color: var(--danger); }
.btn-approve { background-color: var(--success-bg); color: var(--success); }
.btn-wa-chat { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.btn-wa-invoice { background-color: var(--gold-light); color: var(--gold-hover); border: 1px solid var(--gold-primary); }


/* ==========================================
   10. KALENDER ADMIN & KEUANGAN
========================================== */
.calendar-admin-wrapper { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid var(--silver-border); }
.calendar-header-admin { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-header-admin h3 { font-size: 16px; font-weight: 800; color: var(--dark-main); }
.btn-cal { background: var(--silver-bg); border: none; width: 35px; height: 35px; border-radius: 10px; color: var(--dark-main); cursor: pointer; transition: 0.3s; }
.btn-cal:hover { background: var(--gold-light); color: var(--gold-hover); }
.calendar-grid-admin { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.days-header div { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; text-align: center; padding-bottom: 10px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text-main); border-radius: 10px; background: #fff; border: 1px solid var(--silver-border); transition: 0.3s; cursor: pointer; position: relative; }
.cal-day.empty { background: transparent; border: none; cursor: default; }
.cal-day.today { border: 2px solid var(--gold-primary); color: var(--gold-hover); }

/* Tanda Ada Pesanan */
.cal-day.booked-mobil { background: var(--gold-light); color: var(--gold-hover); border-color: var(--gold-primary); }
.cal-day.booked-mobil::after { content: ''; position: absolute; bottom: 4px; width: 4px; height: 4px; background: var(--gold-primary); border-radius: 50%; }
.cal-day.booked-tour { background: var(--dark-main); color: #fff; border-color: var(--dark-deep); }
.cal-day.booked-tour::after { content: ''; position: absolute; bottom: 4px; width: 4px; height: 4px; background: var(--gold-primary); border-radius: 50%; }

.calendar-detail-wrapper { margin-top: 20px; padding-top: 15px; border-top: 1px dashed var(--silver-border); }
.detail-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.detail-header h4 { font-size: 14px; color: var(--dark-main); }
.badge-total { background: var(--dark-main); color: #fff; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; }
.agenda-item { background: #fff; border-left: 4px solid var(--gold-primary); border-radius: 10px; padding: 12px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--silver-bg); border-right: 1px solid var(--silver-bg); border-bottom: 1px solid var(--silver-bg); }
.agenda-item.tour { border-left-color: var(--dark-main); }
.agenda-info h5 { margin: 0; font-size: 13px; color: var(--dark-main); }
.agenda-info p { margin: 2px 0 0; font-size: 11px; color: var(--text-muted); }
.agenda-time { font-size: 11px; font-weight: 700; color: var(--gold-hover); background: var(--gold-light); padding: 4px 8px; border-radius: 6px; }


/* ==========================================
   11. KEUANGAN & CMS LAINNYA
========================================== */
.finance-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; }
.fin-card { background: #fff; padding: 20px 15px; border-radius: 16px; border: 1px solid var(--silver-border); display: flex; flex-direction: column; align-items: flex-start; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.fin-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.fin-icon.blue { background: var(--gold-light); color: var(--gold-hover); }
.fin-icon.green { background: var(--dark-main); color: #fff; }
.fin-data p { font-size: 10px; color: var(--text-muted); font-weight: 700; margin: 0 0 4px 0; text-transform: uppercase; }
.fin-data h3 { font-size: 18px; color: var(--dark-main); margin: 0; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

.chart-container, .transaction-history { background: #fff; border-radius: 16px; padding: 20px; border: 1px solid var(--silver-border); margin-bottom: 20px; }
.chart-header h4, .transaction-history h4 { font-size: 15px; color: var(--dark-main); margin: 0 0 15px 0; font-weight: 800; }
.fin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.fin-table th { background: var(--silver-bg); padding: 10px; text-align: left; color: var(--text-muted); font-weight: 600; border-bottom: 2px solid var(--silver-border); }
.fin-table td { padding: 12px 10px; border-bottom: 1px solid var(--silver-bg); color: var(--text-main); font-weight: 500; }
.txt-id { font-family: monospace; color: var(--text-muted); font-weight: 700; }
.txt-green { color: var(--gold-hover); font-weight: 800; text-align: right; }

.finance-filters { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 10px; background: #fff; padding: 12px; border-radius: 12px; border: 1px solid var(--silver-border); }
.filter-group { display: flex; gap: 8px; }
select { padding: 8px 12px; border-radius: 8px; border: 1px solid var(--silver-border); font-family: inherit; font-size: 12px; outline: none; background: var(--silver-bg); }

/* Responsive adjustments */
@media (max-width: 360px) {
    .order-info-grid { grid-template-columns: 1fr; gap: 10px; }
    .fin-data h3 { font-size: 15px; }
}


/* --- OVERHAUL PROFIL UI (Sesuai Foto Referensi) --- */
.tab-container.profil-tabs {
    background: #fff; padding: 6px; border-radius: 12px; gap: 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.profil-tabs .tab-btn-prof {
    background: transparent; color: #888; font-weight: 600; border-radius: 10px;
}

/* Menyesuaikan gambar logo di dalam avatar bulat */
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Memastikan logo utuh, tidak terpotong */
    padding: 10px;       /* Memberi jarak agar logo tidak menyentuh garis luar */
    border-radius: 50%;
}


.profil-tabs .tab-btn-prof.active {
    background: var(--gold-light); color: var(--gold-hover); box-shadow: none;
}
.profile-card-wrapper {
    display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 0 auto;
}
.modern-card {
    background: #ffffff; border-radius: 16px; padding: 25px; box-shadow: 0 8px 25px rgba(0,0,0,0.03); border: none;
}
.icon-gold {
    background: var(--gold-light); color: var(--gold-primary); width: 65px; height: 65px; font-size: 26px; border-radius: 50%;
}
#profile-display-name { color: var(--dark-main); font-weight: 800; font-size: 18px; margin:0; }
#profile-display-email { color: #888; font-size: 12px; margin: 4px 0 8px 0; }
.admin-badge {
    background: var(--dark-main); color: #fff; font-size: 10px; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; display:inline-block; font-weight: 800;
}
.card-title { color: var(--dark-main); font-weight: 800; font-size: 16px; margin-top: 0; margin-bottom: 20px; }
.input-clean { 
    background: #fff !important; 
    border: 1px solid var(--silver-border) !important; 
    border-radius: 12px !important; 
    padding: 14px 16px !important; 
    font-family: inherit !important;
    font-size: 13px !important;
    color: var(--text-main) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}
.input-clean:focus { 
    border-color: var(--gold-primary) !important; 
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.1) !important; 
    outline: none !important;
}
.btn-gold { background: var(--gold-primary); color: #fff; border-radius: 12px; padding: 14px; font-weight: 700; width:100%; border:none; cursor:pointer;}
.btn-gold:hover { background: var(--gold-hover); box-shadow: 0 6px 15px rgba(197, 160, 40, 0.2); }
.btn-dark { background: var(--dark-main); color: #fff; border-radius: 12px; padding: 14px; font-weight: 700; width:100%; border:none; cursor:pointer; }
.btn-dark:hover { background: var(--dark-deep); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
.btn-logout-pink {
    background: #ffebee; color: #c62828; border: none; border-radius: 12px; padding: 14px 25px; font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
}
.btn-logout-pink:hover { background: #ffcdd2; transform: translateY(-2px); }


/* ==========================================
   FIX TOMBOL UNDUH LAPORAN (TAB KEUANGAN) - REVISI FINAL
========================================== */
/* 1. Memaksa Kotak Putih (Parent) agar elemen bisa turun ke baris baru */
div:has(> #btn-download-finance) {
    flex-wrap: wrap !important;
    gap: 10px !important;
}

/* 2. Menyeragamkan tinggi Select (Pilihan Bulan & Tahun) */
#filter-fin-month, 
#filter-fin-year {
    height: 42px !important;
    flex: 1;
    min-width: 110px;
}

/* 3. Menyesuaikan Proporsi Tombol Unduh */
#btn-download-finance {
    height: 42px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important;
    flex: 1;
    margin: 0 !important;
    border-radius: 8px; /* Sudut membulat yang elegan */
    box-sizing: border-box;
}

/* 4. Logika Khusus Layar HP (Mobile) */
@media (max-width: 480px) {
    #btn-download-finance {
        flex: 100% !important; /* Memaksa tombol mengambil 1 baris penuh di bawah */
        margin-top: 5px !important;
    }
}

/* ==========================================
   FIX PREVIEW GALERI & PARTNER (ADMIN)
========================================== */
/* Membentuk Grid Kotak-Kotak yang Rapi */
#gallery-list, 
#partner-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Wadah Per Foto */
.gallery-item-admin {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1; /* Memaksa foto menjadi kotak presisi 1:1 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 2px solid #f1f3f5;
    transition: 0.3s ease;
    background: #fff;
}

.gallery-item-admin:hover {
    border-color: var(--gold-main);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(197, 160, 40, 0.2);
}

/* Mengatur Gambar agar Pas (Tidak Gepeng/Pecah) */
.gallery-item-admin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-admin:hover img {
    transform: scale(1.05);
}

/* Tombol Hapus Merah Melayang di Kanan Atas */
.btn-delete-gallery {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(244, 67, 54, 0.9); /* Merah Peringatan */
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.btn-delete-gallery:hover {
    background: #d32f2f;
    transform: scale(1.15) rotate(5deg);
}

/* Label Judul Foto di Bagian Bawah */
.gallery-title-admin {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.85); /* Navy transparan */
    color: white;
    font-size: 12px;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(2px);
    font-weight: 600;
}

/* ==========================================
   FIX PREVIEW PARTNER / MITRA (ADMIN)
========================================== */
.partner-item-admin {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3; /* Format 4:3 lebih cocok untuk Logo */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 2px solid #f1f3f5;
    transition: 0.3s ease;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 40px 20px; /* Memberi ruang di bawah agar logo tidak tertutup teks */
}

.partner-item-admin:hover {
    border-color: var(--gold-main);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(197, 160, 40, 0.2);
}

.partner-item-admin img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* PENTING: Memastikan logo utuh, tidak terpotong */
    transition: all 0.4s ease;
    filter: grayscale(100%); /* Efek elegan: Hitam Putih */
    opacity: 0.6;
}

.partner-item-admin:hover img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Berubah berwarna saat mouse diarahkan */
    opacity: 1;
}

/* Tombol Hapus Merah (Sama dengan Galeri) */
.btn-delete-partner {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.btn-delete-partner:hover {
    background: #d32f2f;
    transform: scale(1.15) rotate(5deg);
}

/* Judul Logo (Versi Terang) */
.partner-title-admin {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa; /* Warna putih abu-abu agar serasi dengan logo */
    color: var(--navy-main);
    font-size: 12px;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    border-top: 1px solid #eee;
}

/* ==========================================
   FIX PREVIEW STRUKTUR TIM (ADMIN)
========================================== */
/* Kartu Profil Tim */
.team-item-admin {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 2px solid #f1f3f5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-item-admin:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 40, 0.15);
}

/* Bingkai Foto Lingkaran (Avatar) */
.team-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--bg-gold-light);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-item-admin:hover .team-avatar-wrapper {
    border-color: var(--gold-main);
    transform: scale(1.05);
}

.team-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto akan otomatis pas di dalam lingkaran */
}

/* Informasi Nama & Jabatan */
.team-info-admin h5 {
    font-size: 14px;
    color: var(--navy-main);
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.team-info-admin p {
    font-size: 11px;
    color: #666;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

/* Tombol Hapus Merah (Posisi di Pojok Kanan Atas) */
.btn-delete-team {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.btn-delete-team:hover {
    background: #d32f2f;
    transform: scale(1.15) rotate(5deg);
}


/* ==========================================
   FIX: MODUL KEUANGAN & VALIDASI RUTE
========================================== */

/* Pilar Keuangan (3 Kotak) */
.finance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}
.fin-card {
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}
.fin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}
.fin-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #fff;
}
.fin-icon.green { color: #2e7d32; box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2); }
.fin-icon.red { color: #c62828; box-shadow: 0 4px 10px rgba(198, 40, 40, 0.2); }
.fin-icon.blue { color: #1565c0; box-shadow: 0 4px 10px rgba(21, 101, 192, 0.2); }

.fin-data p {
    font-size: 12px;
    color: #555;
    margin: 0 0 5px 0;
    font-weight: 600;
    text-transform: uppercase;
}
.fin-data h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 800;
}

/* Tabel Riwayat Keuangan */
.fin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.fin-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-size: 12px;
    color: #666;
    border-bottom: 2px solid #eee;
}
.fin-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #333;
    vertical-align: middle;
}
.txt-id {
    font-family: monospace;
    color: #1976d2;
    background: #e3f2fd;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Grup Detail di Modal Validasi */
.detail-group {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* ==========================================
   PERBAIKAN UI KEUANGAN (FINANCE) - COMPACT
========================================== */
.finance-summary-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.fin-card-modern {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 14px;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
/* Warna Latar Lembut */
.fin-card-modern.income { background: #e8f5e9; border: 1px solid #c8e6c9; }
.fin-card-modern.expense { background: #ffebee; border: 1px solid #ffcdd2; }
.fin-card-modern.profit { background: #e3f2fd; border: 1px solid #bbdefb; }

.fin-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* Warna Ikon */
.fin-card-modern.income .fin-icon-wrap { color: #2e7d32; }
.fin-card-modern.expense .fin-icon-wrap { color: #c62828; }
.fin-card-modern.profit .fin-icon-wrap { color: #1565c0; }

.fin-info { flex-grow: 1; text-align: left; }
.fin-info p { margin: 0 0 2px 0; font-size: 11px; color: #666; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.fin-info h3 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
/* Warna Teks Nominal */
.fin-card-modern.income h3 { color: #2e7d32; }
.fin-card-modern.expense h3 { color: #c62828; }
.fin-card-modern.profit h3 { color: #1565c0; }

/* Panel Kontrol & Tombol */
.finance-control-panel {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fin-filters { display: flex; gap: 10px; }
.fin-select {
    flex: 1; padding: 12px 10px; border-radius: 10px;
    border: 1px solid #ddd; font-size: 13px; color: #444;
    background: #fafafa; outline: none; transition: 0.3s;
}
.fin-select:focus { border-color: var(--gold-main); background: #fff; }

.fin-actions { display: flex; gap: 20px; }
/* Ukuran tombol dipaksa sama persis */
.btn-fin {
    width: 100% !important;
    padding: 14px 15px !important; 
    border: none !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer;
    transition: 0.3s;
}

.btn-fin.btn-red { 
    background: #d32f2f !important; 
}

.btn-fin.btn-gold { 
    background: linear-gradient(135deg, #C5A028, #A6851E) !important; 
}

.btn-fin:hover { 
    opacity: 0.9; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 12px rgba(0,0,0,0.15); 
}

/* Jika dibuka di Laptop/Tablet (Melebar) */
@media (min-width: 768px) {
    .finance-summary-grid { flex-direction: row; }
    .fin-card-modern { flex: 1; }
    .finance-control-panel { flex-direction: row; justify-content: space-between; align-items: center; }
    .fin-filters { width: 350px; }
    .fin-actions { width: auto; }
    .btn-fin { padding: 10px 20px; }
}

/* ==========================================
   CLASS BARU ANTI-CACHE (TOMBOL KEUANGAN)
========================================== */
.btn-keuangan-aksi {
    width: 100% !important;
    min-height: 48px !important; /* Tinggi dipaksa mutlak 48px */
    border: none !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    transition: 0.3s;
}

.btn-keuangan-aksi.merah {
    background: #d32f2f !important;
}

.btn-keuangan-aksi.emas {
    background: linear-gradient(135deg, #C5A028, #A6851E) !important;
}

.btn-keuangan-aksi:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}