
:root {
    --purple-dark: #4A1AB1;
    --purple-light: #4c50b8;
    --purple-bg: #5A34D0;
    --icon-bg-light: #F4F4FF;
    --icon-color-purple: #7E58DE;
    --white: #fff;
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
    --primary:#5b5ce2;
    --secondary:#8b8df6;
    --bg:#f4f6fb;
    --card:#ffffff;
    --text:#1f2937;
    --tour-overlay: rgba(18, 18, 30, .38);      /* lebih terang (tidak terlalu gelap) */
    --tour-overlay-blur: 0.6px;

    --tour-primary: #6b5cff;
    --tour-primary-2: #4e3df3;

    --tour-ring: rgba(107, 92, 255, .35);

    /* Card */
    --tour-card-bg: rgba(255,255,255,.97);
    --tour-text: #1d1d28;
    --tour-muted: #6b6b7a;

    --tour-radius: 18px;
    --tour-shadow: 0 18px 55px rgba(0,0,0,.18);

    /* Spacing */
    --tour-gap: 16px;
  
}

html, body {
    overscroll-behavior-y: auto; /* cegah pull-to-refresh */
    overflow-y: auto;               /* tetap bisa scroll */
    margin: 0;
    padding: 0;
}


body {
    background-color: #f4f5f7;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
    padding-top: var(--safe-top);
    padding-bottom: var(--safe-bottom);
    touch-action: pan-x pan-y; 
    /* Kontrol gesture */

}

.content-scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Untuk mendukung iOS */
}




#loadingSpinner {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-pointer{
    cursor: pointer;
}

.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  100% { background-position: -200% 0; }
}
 .btnbck {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

.btnbck:hover {
    color: #7a7a7aff;
    
    /* Ubah warna teks atau ikon saat hover */
    transform: scale(1.1);
    /* Sedikit memperbesar tombol saat hover */
}

.btn-xs {
  padding: .25rem .4rem;
  font-size: .75rem;
  line-height: 1.2;
  border-radius: .2rem;
}


.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.search-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.search-box input {
    border: 0;
    background: transparent;
    color: #fff;
    width: 100%;
    outline: none;
    margin-left: 8px;
}

.search-box input::placeholder {
    color: #e0e0e0;
}
input::placeholder,
textarea::placeholder {
  font-size: 0.85rem;         /* Ukuran font lebih kecil */
  color: #999;                /* Warna abu-abu lembut */
  font-weight: 400;           /* Normal, tidak tebal */
  /* font-style: italic;        */
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 5px;
  right: 1px;
  width: 20px;
}
/* Quick menu */
/* HEADER */
/* HEADER DENGAN GRADIENT + WAVE */
.home-header {
    position: relative;
    background: linear-gradient(180deg,
            #4c50b8 0%,
            #3b3f8c 70%,
            #2f327a 100%);
            
    /* background: linear-gradient(180deg, #5935d0 0%, #5935d0 70%, #5935d0 100%); */
    background-size: 100% 100%;
    color: #fff;
    padding: 20px 16px 60px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}

/* Wave layer 1 */
.home-header::before {
    content: "";
    position: absolute;
    bottom: -55px;
    left: -10%;
    width: 120%;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(18px);
}

/* Wave layer 2 */
.home-header::after {
    content: "";
    position: absolute;
    bottom: -75px;
    right: -20%;
    width: 140%;
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(25px);
}

/* Efek glossy / light sweep */
.header-shine {
    position: absolute;
    top: -40px;
    left: -50%;
    width: 200%;
    height: 65%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.06) 40%,
            rgba(255, 255, 255, 0) 80%);
    transform: rotate(-6deg);
    pointer-events: none;
}


/* QUICK MENU WRAPPER */
.quick-menu {
    margin-top: -56px;
    /* INI KUNCINYA */
    position: relative;
    z-index: 10;
}

/* CARD */
.quick-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px 8px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    transition: transform .2s ease;
}

.quick-card:active {
    transform: scale(0.97);
}


/* Trends */
.trend-card img {
    border-radius: 14px 14px 0 0;
    height: 120px;
    object-fit: cover;
}

/* Bottom nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 8px 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, .18);
    z-index: 50;
}

/* LINK NAV */
.bottom-nav .nav-item-link {
    position: relative;
    display: inline-block;
    padding: 6px 10px 2px;
    border-radius: 20px;
    text-decoration: none;
    color: #777;
    font-size: 12px;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.bottom-nav .nav-item-link i {
    transition: transform .2s ease;
}

/* HOVER */
.bottom-nav .nav-item-link:hover {
    color: #3b3f8c;
    background-color: rgba(59, 63, 140, 0.08);
    transform: translateY(-2px);
}

.bottom-nav .nav-item-link:hover i {
    transform: translateY(-1px);
}

/* ACTIVE STATE */
.bottom-nav .nav-item-link.active {
    color: #3b3f8c;
    background-color: rgba(59, 63, 140, 0.15);
    font-weight: 600;
}

.bottom-nav .nav-item-link.active i {
    transform: translateY(-1px);
}

/* FAB BUTTON */
.fab-btn {
    width: 56px;
    height: 56px;
    background: #3b3f8c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -32px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

/* ===== TRENDS HOME ===== */

.trends-section {
    overflow: hidden;
}

.trends-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.trends-scroll::-webkit-scrollbar {
    display: none;
}

.trends-card {
    position: relative;
    flex: 0 0 70%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    scroll-snap-align: start;
    cursor: pointer;
}

.trends-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

/* CARD DASAR */
.quick-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* penting untuk ripple */
    text-align: center;

    background: #ffffff;
    border-radius: 16px;
    padding: 18px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transition: transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    height: 100%;
}

/* ICON & TEKS (opsional, kalau pakai struktur baru) */
.quick-card i,
.quick-card h3 {
    font-size: 24px;
    color: #6366F1;
    display: block;
    margin-bottom: 6px;
}

.quick-card p,
.quick-card .title {
    margin: 0;
    margin-top: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-card .desc {
    font-size: 0.7rem;
    opacity: 0.75;
    margin-top: 2px;
}

/* HOVER EFEK */
.quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* KLIK EFEK (ACTIVE STATE) */
.quick-card:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) inset;
}

/* RIPPLE EFFECT */
.quick-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.15);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transition: transform 0.45s ease-out, opacity 0.75s ease-out;
}

.quick-card:active::after {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 1;
}

/* PRIMARY CARD (optional, untuk Data RT/RW) */
.quick-card.primary {
    border: 2px solid rgba(99, 102, 241, 0.35);
    box-shadow: 0 14px 28px rgba(99, 102, 241, 0.28);
}

/* ICON CIRCLE */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 20px;
}

/* WARNA PASTEL */
.bg-purple {
    background: #ede9ff;
    color: #6d28d9;
}

.bg-pink {
    background: #fce7f3;
    color: #db2777;
}

.bg-green {
    background: #ecfeff;
    color: #059669;
}

.bg-yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.bg-red {
    background: #fee2e2;
    color: #dc2626;
}

.bg-blue {
    background: #e0f2fe;
    color: #0284c7;
}

/* CARD MENU TENGAH */
.menu-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 8px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
}



/* Hero CSS */
.hero-slides {
    position: relative;
    z-index: 1;
}

.hero-slides .owl-prev,
.hero-slides .owl-next {
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.11);
    width: 1.875rem;
    height: 1.875rem;
    text-align: center;
    line-height: 1.875rem;
    left: 0;
    margin-top: -0.938rem;
    color: #ffffff;
    display: none;
}

.hero-slides .owl-next {
    left: auto;
    right: 0;
}

.hero-slides .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 0.938rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-slides .owl-dots .owl-dot {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: relative;
    z-index: 1;
    margin: 0 0.313rem;
    width: 0.5rem;
    height: 0.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.5rem;
    flex: 0 0 0.5rem;
    max-width: 0.5rem;
    background-color: #f1f1f2;
    border-radius: 50%;
}

.hero-slides .owl-dots .owl-dot.active {
    background-color: #625AFA;
}

.hero-slides .owl-dots .owl-dot.active::after {
    position: absolute;
    width: calc(100% + 0.5rem);
    height: calc(100% + 0.5rem);
    z-index: 1;
    content: "";
    border: 0.125rem solid #625AFA;
    left: -0.25rem;
    top: -0.25rem;
    border-radius: 50%;
}

.single-hero-slide {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 160px;
    background-position: left !important;
    background-size: cover;
    border-radius: 0.5rem;
}
.single-hero-slide2 {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 160px;
    background-position: center center;
    background-size: cover;
    border-radius: 0.5rem;
}

.logo-pemkot {
    position: absolute;
    top: 10px; /* Jarak dari atas */
    right: 10px; /* Jarak dari kanan */
    width: 100px !important; /* Ukuran logo */
    z-index: 10; /* Pastikan logo berada di atas elemen lain */
}
.logo-person {
    position: absolute;
    left: 10px; /* Jarak dari kanan */
    bottom: 0px;
    height: 150px !important; /* Ukuran logo */
    width:auto !important;
    z-index: 10; /* Pastikan logo berada di atas elemen lain */
}
/* Mobile kecil: sampai 479px */
@media (max-width: 479px) {
    .logo-person {
        height: 150px !important; /* Logo kecil */
        left: 5px;
        bottom: 5px;
    }
    .logo-pemkot {
        width: 80px !important; /* Logo pemkot kecil */
    }
}

/* Mobile sedang / tablet kecil: 480px–767px */
@media (min-width: 480px) and (max-width: 767px) {
    .logo-person {
        height: 150px !important;
        left: 1px;
        bottom: 2px;
    }
}

/* Tablet besar / laptop kecil: 768px–1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .logo-person {
        height: 120px !important; /* Logo lebih besar */
        left: 15px;
        bottom: 15px;
    }
}

/* Desktop / laptop besar: 1025px ke atas */
@media (min-width: 1025px) {
    .logo-person {
        height: 200px !important; /* Logo besar */
        left: 20px;
        bottom: 20px;
    }
}


@media only screen and (min-width:480px) and (max-width:767px) {
    .single-hero-slide {
        height: 170px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .single-hero-slide {
        height: 170px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-hero-slide {
        height: 200px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .single-hero-slide {
        height: 210px;
    }
}

@media only screen and (min-width:1200px) {
    .single-hero-slide {
        height: 230px;
    }
}

.single-hero-slide .slide-content {
    position: absolute;
    inset: 0;
}

.single-hero-slide .slide-content .slide-text {
    padding-left: 2rem;
    padding-right: 1rem;
    padding-top: 4rem;
    right: 20px;
}

.single-hero-slide .slide-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem !important;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-hero-slide .slide-content h4 {
        font-size: 2rem;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .single-hero-slide .slide-content h4 {
        font-size: 2rem;
    }
}

@media only screen and (min-width:1200px) {
    .single-hero-slide .slide-content h4 {
        font-size: 2.5rem;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-hero-slide .slide-content p {
        font-size: 1.125rem;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .single-hero-slide .slide-content p {
        font-size: 1.125rem;
    }
}

@media only screen and (min-width:1200px) {
    .single-hero-slide .slide-content p {
        font-size: 2.25rem;
    }
}

.single-hero-slide .slide-content p {
    /* font-family: 'Racing Sans One'; */
    margin-bottom: 0;
}

.slide-text {
    text-align: start;
}


.single-hero-slide .slide-content .landscape {
    margin-left: -2REM;
    max-width: 53%
}

.single-hero-slide .slide-content .portait {
    margin-left: 3REM;
    max-width: 36%
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-hero-slide .slide-content p {
        font-size: 20px;
    }
}

@media only screen and (max-width:767px) {
    .single-hero-slide .slide-content p {
        font-size: 20px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .single-hero-slide .slide-content p {
        font-size: 20px;
        margin: 1px;
    }
}

@media only screen and (max-width:575px) {
    .single-hero-slide .slide-content p {
        font-size: 20px;
    }
}

@media only screen and (max-width:534px) {
    .single-hero-slide .slide-content p {
        font-size: 18px;
    }

    .single-hero-slide .slide-content .portait {
        margin-left: 2REM;
        max-width: 41%
    }
}

@media only screen and (max-width:469px) {
    .single-hero-slide .slide-content p {
        font-size: 14px;
    }

    .single-hero-slide .slide-content .landscape {
        margin-left: -1.5REM;
    }

    .single-hero-slide .slide-content .portait {
        margin-left: -0.5REM;
        max-width: 49%
    }
}

@media only screen and (max-width:397px) {
    .single-hero-slide .slide-content p {
        font-size: 13px;
    }

    .single-hero-slide .slide-content .slide-text {
        padding-left: 0.7rem;
        padding-right: 1rem;
    }

    .single-hero-slide .slide-content .landscape {
        margin-left: -1.2REM;
        max-width: 50%
    }

    .single-hero-slide .slide-content .portait {
        margin-left: -0.6REM;
        max-width: 47%
    }


}
.text-box {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);

    width: 45%;
    max-width: 420px;

    text-align: left;
}

/* Default typography */
.text-box p {
    margin-bottom: 0.25rem;
    line-height: 1.2;
}


/* WRAPPER PROGRESS */
/* SATU BARIS KEGIATAN TANPA CARD */
.activity-card {
    background: rgba(255, 255, 255, 0.04);
    /* hampir transparan */
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    /* efek glass, kalau didukung browser */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    /* asumsi background ungu gelap */
}

.activity-line-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.activity-line-header h6 {
    font-weight: 600;
}

.activity-line-header small {
    opacity: 0.85;
}

.progress-wrapper {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
    /* boleh, karena teks di dalam bar */
    height: 28px;
    /* dibuat lebih tinggi supaya teks muat */
    position: relative;
    margin-bottom: 10px;
}

.progress-bar-custom {
    height: 100%;
    background: #6366F1;
    /* ganti sesuai warna brand */
    border-radius: 999px;

    display: flex;
    /* trik penting: pakai flexbox */
    align-items: center;
    /* vertikal center */
    justify-content: right;
    /* horizontal center */
    padding: 0 8px;
    /* sedikit ruang kanan–kiri */
}

.progress-bar-custom span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    /* supaya kontras dengan warna bar */
    white-space: nowrap;
    /* teks tidak turun ke bawah */
}




.activity-caption {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* Bell Circle */
.bell-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.bell-wrapper i {
    font-size: 20px;
    /* color: #3b3f8c; */
}

/* DOT Notifikasi */
.notif-dot {
    width: 11px;
    height: 11px;
    background: #ff4757;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    border: 2px solid white;
    display: none; /* Default: not visible */
}

.notif-dot.show {
    display: block; /* Show the notification dot when there's a new notification */
}

/* Popup Notif */


/* Optional: sedikit styling scrollbar (Chrome, Edge, dll) */
.notif-popup::-webkit-scrollbar {
    width: 6px;
}

.notif-popup::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 10px;
}

.notif-popup::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 10px;
}

.notif-popup {
    position: absolute;
    top: 70px;
    right: 18px;
    width: 260px;
    background: white;
   border-radius: 10px;
    padding: 7px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 99;

    max-height: 260px;
    overflow-y: auto;
}

/* Row notif */
.notif-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: flex-start;
}

/* Gantian warna: putih – abu terang */
.notif-item:nth-child(odd) {
    background: #ffffff;
}

.notif-item:nth-child(even) {
    background: #f4f6fa;
}

/* Icon style */
.notif-icon {
    font-size: 22px;
    flex-shrink: 0;
}

/* Text block */
.notif-text strong {
    font-size: 14px;
    display: block;
}

.notif-text small {
    font-size: 12px;
    color: #777;
}


 .payment-list {
      background: white;
      border-radius: 20px;
      margin-bottom: 15px;
      padding: 15px 15px;
      color: #000;
    }
    .payment-list-title {
      font-weight: 600;
      margin-bottom: 12px;
      color: #505050;
      font-size: 12px;
    }
    .payment-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .payment-item {
      background: var(--icon-bg-light);
      border-radius: 15px;
      padding: 15px 10px;
      text-align: center;
      font-size: 12px;
      cursor: pointer;
      user-select: none;
      color: #2C2B58;
      transition: background-color 0.3s, transform 0.3s;
    }
    .payment-item:hover {
      background-color: var(--purple-light);
      color: var(--white);
      transform: translateY(-5px);
    }
    .payment-item i {
      font-size: 24px;
      margin-bottom: 8px;
      display: block;
    }

     /* Bottom Navigation */
    .bottom-nav {
      position: fixed;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 450px;
      max-width: 100%;
      background: white;
      border-radius: 30px;
      height: 65px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.15);
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1000;
    }
    .nav-item {
      font-size: 24px;
      color: #9b9b9b;
      cursor: pointer;
      flex-grow: 1;
      text-align: center;
      user-select: none;
      transition: color 0.25s;
    }
    .nav-item.active, .nav-item:hover {
      color: var(--purple-light);
    }

    /* Floating middle button */
    .btn-floating {
      background: var(--purple-bg);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      position: relative;
      bottom: 20px;
      box-shadow: 0 8px 14px rgba(90, 52, 208, 0.6);
      border: 5px solid white;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 28px;
      cursor: pointer;
      transition: background-color 0.3s;
      z-index: 1001;
      user-select: none;
    }
    .btn-floating:hover {
      background: var(--purple-light);
    }

    /* Responsiveness */
    @media (max-width: 480px) {
      .app-container {
        margin: 10px;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
      }
      .bottom-nav {
        width: 100%;
        border-radius: 20px 20px 0 0;
        height: 73px;
        bottom: 0px;
      }
      .btn-floating {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-width: 4px;
        bottom: 15px;
      }
    }


.floating-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #3b3f8c;;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #594ab2;
}

.table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  /* overflow: hidden; ← hapus ini */
}

.table-modern thead {
    background: #3b3f8c;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-modern th {
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.table-modern tbody tr {
    transition: background 0.2s ease-in-out;
}

.table-modern tbody tr:hover {
    background-color: #f1f9ff;
}

.table-modern td {
    padding: 10px 12px;
    border-bottom: 1px solid #e9ecef;
}

.table-modern td:first-child {
    font-weight: bold;
    text-align: center;
    color: #484848;
}

.table-modern td:nth-child(2) {
    font-weight: 500;
    color: #333;
}

.table-modern td:last-child {
    font-size: 14px;
}



.table-container {
  /* max-height: 700px; */
  /* overflow-y: auto; */
    border: 1px solid #dee2e6;
  /* -webkit-overflow-scrolling: touch; */
}


/* header tetap menempel */
.table-modern thead th {
    /* position: sticky; */
    top: 0;
    /* z-index: 2; */
    background: #3b3f8c;
    color: #fff;
}
.table-modern .row-header {
    background-color: #cecece; /* ungu */
    color: #fff;              /* teks putih biar kontras */
    font-weight: 600;
}
.badge-summary {
  display: inline-block;
  margin: 6px 10px 12px 0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.badge-summary:hover {
  transform: scale(1.05);
}
.badge-total {
  background: #6c757d; /* abu-abu */
}
.badge-success {
    background: #d4edda;
    color: #155724;/* hijau */
}
.badge-pending {
    background: #fff3cd;
    color: #856404;
}
.badge-indicator {
        font-size: 12px;
        font-weight: 500;
        padding: 6px 10px;
        border-radius: 999px;
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        padding: 6px 10px;
        border-radius: 999px;
        font-weight: 500;
    }

    .status-warning {
        background: #fff3cd;
        color: #856404;
    }

    .status-success {
        background: #d4edda;
        color: #155724;
    }

    .status-danger {
        background: #f8d7da;
        color: #721c24;
    }

     .filter-bar {
        margin-top: -60px;
        position: relative;
        z-index: 10;
    }

    .filter-bar .form-control,
    .filter-bar .form-select {
        border-radius: 14px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .filter-bar .form-control:focus {
        border-color: #3b3f8c;
        box-shadow: 0 0 0 .15rem rgba(59, 63, 140, .25);
    }

    /* Badge hanya muncul di card agenda */
.quick-card-agenda .agenda-badge{
  position:absolute;
  top:10px;
  right:10px;

  min-width:25px;
  height:25px;
  padding:0 7px;
  border-radius:999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color:#fff;

  font-size:11px;
  font-weight:800;
  line-height:1;

  box-shadow:0 10px 42px rgba(33, 33, 33, 0.35);
  border:3px solid #fff;
}

/* Opsional: animasi halus biar "hidup" (agenda saja) */
.quick-card-agenda .agenda-badge{
  animation: agendaPop .35s ease;
}

@keyframes agendaPop{
  from{ transform:scale(.6); opacity:0; }
  to{ transform:scale(1); opacity:1; }
}


.trends-card .badge-date{
 position: absolute;
  right: 9px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 8px;
}

.h7 {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem) !important;
  font-weight: 600;
}


.btn-scan{
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: #3b3f8c;
  color: #fff;
  cursor: pointer;
}

/* overlay full screen */
.qr-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-overlay.hidden{
  display: none;
}

.qr-box{
  background: #fff;
  width: min(520px, 92%);
  border-radius: 16px;
  overflow: hidden;
}

.qr-topbar{
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reader{
  height: min(60vh, 420px);
  width: 100%;
  overflow: hidden;
}

#reader video{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.qr-hint{
  padding: 10px 14px 14px;
  font-size: 14px;
  color: #666;
}


.summary-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.stat-card{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.stat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.stat-card::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: #94a3b8;
}

.stat-top{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.18);
  color: #334155;
  font-size: 18px;
  flex: 0 0 auto;
}

.stat-number{
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.stat-label{
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

/* Meta (persen) */
.stat-meta{
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-pill{
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(148, 163, 184, 0.16);
  color: #0f172a;
}
.stat-meta-text{
  font-size: 12px;
  color: #94a3b8;
  font-weight: 700;
}

/* Variasi warna */
.stat-total::before{ background: #3b82f6; }
.stat-total .stat-icon{ background: rgba(59,130,246,.14); color: #1d4ed8; }

.stat-success::before{ background: #22c55e; }
.stat-success .stat-icon{ background: rgba(34,197,94,.14); color: #16a34a; }
.stat-success .stat-pill{ background: rgba(34,197,94,.14); color: #166534; border-color: rgba(34,197,94,.25); }

.stat-pending::before{ background: #f59e0b; }
.stat-pending .stat-icon{ background: rgba(245,158,11,.16); color: #b45309; }
.stat-pending .stat-pill{ background: rgba(245,158,11,.16); color: #92400e; border-color: rgba(245,158,11,.30); }

.stat-belum::before{ background: #f50b0f; }
.stat-belum .stat-icon{ background: rgba(245,158,11,.16); color: #b4090c; }
.stat-belum .stat-pill{ background: rgba(245,158,11,.16); color: #920e0e; border-color: rgba(245,158,11,.30); }

.card-persen::before{ background: #8b5cf6; }
.card-persen .stat-icon{ background: rgba(139,92,246,.14); color: #6d28d9; }
@media (max-width: 768px){
  .summary-stats{ grid-template-columns: 1fr; }
}

/* Desktop: 4 kolom */
.summary-stats{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

/* Tablet + HP (termasuk iPhone 11 ~414px): jadi 2 kolom */
@media (max-width: 992px){
  .summary-stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Opsional: kalau layar sangat kecil (mis. <320px) baru 1 kolom */

@media (max-width: 320px){
  .summary-stats{
    grid-template-columns: 1fr;
  }
}


  .btn-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform .15s ease, background .15s ease;
    }

    .btn-icon:active {
        transform: scale(0.98);
    }






/* =========================
   LOADER OVERLAY
========================= */
#pwa-loader{
  position:fixed;
  inset:0;
  z-index:9999;
 background: rgba(244, 246, 251, 0.19);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:1;
  transition:opacity .35s ease;
}

#pwa-loader.hide{
  opacity:0;
  pointer-events:none;
}

/* =========================
   LOADER CARD
========================= */
.loader-card{
  width:260px;
  padding:26px 22px 24px;
  background:var(--card);
  border-radius:18px;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  text-align:center;
  animation:scaleIn .4s ease;
}

@keyframes scaleIn{
  from{transform:scale(.96);opacity:.6}
  to{transform:scale(1);opacity:1}
}

/* =========================
   SPINNER
========================= */
.spinner{
  width:64px;
  height:64px;
  margin:0 auto 16px;
  border-radius:50%;
  background:conic-gradient(
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  animation:spin 1.1s linear infinite;
  position:relative;
}

.spinner::after{
  content:"";
  position:absolute;
  inset:8px;
  background:#fff;
  border-radius:50%;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

/* =========================
   TEXT
========================= */
.loader-title{
  font-weight:600;
  font-size:15px;
  color:var(--text);
}

.loader-sub{
  font-size:13px;
  color:#6b7280;
  margin-top:4px;
  min-height:18px;
}

/* =========================
   PROGRESS BAR
========================= */
.progress{
  margin-top:14px;
  height:6px;
  background:#eef1ff;
  border-radius:6px;
  overflow:hidden;
}

.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
  transition:width .4s ease;
}

/* =========================
   MOBILE FRIENDLY
========================= */
@media(max-width:480px){
  .loader-card{
    width:220px;
    padding:22px 18px;
  }
}

/* avatar base */
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 3px solid;
}


.pagination {
    display: flex;
    justify-content: center;
    /* Pastikan tombol berada di tengah */
    gap: 10px;
    /* Jarak antar tombol pagination */
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-item button {
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid var(--border);
}

.pagination .page-item.active button {
    background-color: #3b3f8c;
    color: #fff;
}

.pagination .page-item.disabled button {
    background-color: #f0f0f0;
    color: #aaa;
}

/* === EMPTY STATE TRENDS === */
.trends-empty {
    width: 100%;
    min-height: 180px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(91,110,225,0.08),
        rgba(91,110,225,0.02)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px dashed rgba(91,110,225,.25);
}

.trends-empty .empty-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(91,110,225,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.trends-empty .empty-icon i {
    font-size: 26px;
    color: var(--purple, #5b6ee1);
}

.trends-empty h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
}

.trends-empty p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}



/* ------- BASE LAYERS ------- */
.tour-overlay{
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  background: var(--tour-overlay);

  /* halus, tidak berlebihan */
  backdrop-filter: blur(var(--tour-overlay-blur));
  -webkit-backdrop-filter: blur(var(--tour-overlay-blur));
}

.tour-overlay.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* Spotlight: area highlight */
.tour-spotlight{
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: 16px;

  /* Ganti 9999px -> 200vmax (lebih aman di iOS) */
  box-shadow:
    0 0 0 200vmax rgba(18, 18, 30, .38),
    0 0 0 5px rgba(107, 92, 255, .35);
}


/* ------- POPOVER CARD ------- */
.tour-popover{
  position: fixed;
  z-index: 10000;
  width: min(380px, calc(100vw - 24px));
  background: var(--tour-card-bg);
  color: var(--tour-text);
  border-radius: var(--tour-radius);
  box-shadow: var(--tour-shadow);

  padding: 14px 14px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;

  /* antialias */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-popover.is-active{
  opacity: 1;
  transform: translateY(0);
}

/* ------- HEADER ------- */
.tour-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.tour-title{
  margin: 0;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: .1px;
  color: var(--tour-text);
}

.tour-desc{
  margin: 6px 0 0;
  color: var(--tour-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Badge kanan */
.tour-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107,92,255,.12);
  color: rgba(39, 39, 50, .9);
  border: 1px solid rgba(107,92,255,.18);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.tour-badge i{
  color: var(--tour-primary);
}

/* ------- FOOTER (progress + actions) ------- */
.tour-progress{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);

  font-size: 12px;
  color: var(--tour-muted);
}

.tour-actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ------- BUTTONS ------- */
.tour-btn{
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  border-radius: 14px;
  padding: 10px 14px;
  min-height: 40px;

  font-weight: 900;
  font-size: 13px;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  transition: transform .05s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
}

.tour-btn:active{
  transform: scale(.98);
}

/* Skip: pill outline, ringan */
.tour-btn-skip{
  background: transparent;
  color: rgba(0,0,0,.65);
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 9px 14px;
}

.tour-btn-skip:hover{
  background: rgba(0,0,0,.04);
}

/* Back: secondary */
.tour-btn-back{
  background: rgba(0,0,0,.06);
  color: #2a2a33;
  border: 1px solid rgba(0,0,0,.06);
}

.tour-btn-back:hover{
  background: rgba(0,0,0,.08);
}

/* Next: primary */
.tour-btn-next{
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, var(--tour-primary), var(--tour-primary-2));
  box-shadow: 0 10px 22px rgba(107,92,255,.20);
}

.tour-btn-next:hover{
  opacity: .95;
}

/* Disabled state (jika Anda pakai) */
.tour-btn[disabled]{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* ------- ACCESSIBILITY ------- */
.tour-sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ------- OPTIONAL: restart button (debug/admin) ------- */
.tour-restart{
  position: fixed;
  right: 14px;
  bottom: 92px; /* sesuaikan jika ada bottom nav fixed */
  z-index: 10001;

  border: 1px solid rgba(107,92,255,.22);
  background: rgba(107,92,255,.10);
  color: rgba(0,0,0,.72);

  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ------- MOBILE TUNING ------- */
@media (max-width: 360px){
  .tour-popover{
    width: calc(100vw - 18px);
    padding: 12px;
  }
  .tour-actions{ gap: 8px; }
  .tour-btn{ min-height: 38px; padding: 10px 12px; }
  .tour-btn-skip{ padding: 9px 12px; }
}

/* ===== Progress UI (final) ===== */
.pbar-track{
  width: 100%;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.pbar-fill{
  height: 100%;
  border-radius: 999px;
  background: #6366F1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8px;
  box-sizing: border-box;
  transition: width .25s ease;
  min-width: 0;
}

.pbar-text{
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

/* ===== Skeleton ===== */
.skel-wrap{ margin-bottom: 10px; }

.skel-line{
  height: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
  position: relative;
}

.skel-track{
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.skel-line::after,
.skel-track::after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  width:40%; height:100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  animation: skel-shimmer 1.1s infinite;
}

@keyframes skel-shimmer{
  0% { left: -40%; }
  100% { left: 100%; }
}

/* #sw-update-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 9999;
  font-size: 14px;
}

#sw-update-toast button {
  background: #4F46E5;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
} */

.user-wrapper {
  display: flex;
  align-items: center;
  gap: 4px; /* jarak antara nama dan icon */
}

.user-name {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;   /* batasi lebar nama */
  display: inline-block;
}

.user-icon {
  flex-shrink: 0;     /* jangan ikut terpotong */
}

/* Mode tablet dan lebih besar */
@media (min-width: 768px) {
  .user-name {
    max-width: none;         /* hilangkan batas lebar */
    text-overflow: unset;    /* tampilkan utuh */
    overflow: visible;
    white-space: normal;     /* izinkan baris baru jika perlu */
  }
}

.lpj-menu-card {
    background-color: #fff; /* Warna latar belakang lebih terang */
    border-radius: 10px;
    padding: 12px 12px;  /* Sesuaikan padding */
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    border: 1px dashed #cccdcf; /* Border halus */
}

.lpj-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.lpj-menu-card .d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lpj-menu-card i {
    font-size: 1.2rem;  /* Ukuran ikon lebih kecil */
    color: #4F46E5;  /* Warna ikon biru */
}

.lpj-menu-card .title {
    font-weight: bold;
    margin-top: 0;
    font-size: 1rem;  /* Ukuran font judul */
    color: #4F46E5;  /* Warna teks judul biru */
}

.lpj-menu-card .desc {
    color: #777;
    margin-top: 5px;
    font-size: 0.8rem;
}

.lpj-menu-card .bi-chevron-right {
    font-size: 1.2rem; /* Ukuran ikon panah */
    color: #4F46E5;  /* Warna ikon panah biru */
}

/* Hover effect dengan warna lebih gelap */
.lpj-menu-card:hover {
    background-color: #E0E0E0;
}
.icon-container {
    display: inline-block;
    padding: 11px;
    background: linear-gradient(145deg, #4e46e58c, #41459d); /* Warna latar belakang gradient */
    border-radius: 10px;  /* Membuat sudut melengkung */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.4); /* Efek bayangan 3D */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-container:hover {
    transform: translateY(-5px); /* Efek gerakan naik saat hover */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.5); /* Bayangan lebih kuat saat hover */
}

.icon-container i {
    font-size: 1.3rem;  /* Ukuran ikon */
    color: white;     /* Warna ikon */
}

