* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

#sidebar-kiri {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.1s ease-out;
}

#sidebar-kiri::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

#sidebar-kiri::-webkit-scrollbar-thumb {
    background: #86efac;
    border-radius: 10px;
}

/* Marker */
.custom-div-icon {
    background: transparent !important;
    border: none !important;
}

.map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
}

.map-pin-head {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.22), 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-pin-head:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.map-pin-head svg {
    width: 13px;
    height: 13px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.map-pin-tail {
    width: 0;
    height: 0;
    border-left: 4.5px solid transparent;
    border-right: 4.5px solid transparent;
    margin-top: -1px;
}

/* Stat card */
.stat-card {
    background-color: #ffffff;
}

/* Checkbox putih */
.filter-check {
    accent-color: #4ade80;
}

/* Select dropdown */
.green-select {
    background-color: rgba(255, 255, 255, 0.18);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    width: 100%;
    outline: none;
    font-weight: 700;
}

.green-select option {
    background: #06402b;
    color: white;
}

.green-select:focus {
    border-color: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

/* Mobile Charts */
@media (max-width: 1023px) {
    #charts-container.show-mobile {
        display: flex !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 9999 !important;
        background-color: rgba(15, 23, 42, 0.92) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        padding: 1.25rem !important;
        flex-direction: column !important;
        gap: 1rem !important;
        overflow-y: auto !important;
        pointer-events: auto !important;
    }

    #charts-container.show-mobile>div {
        pointer-events: auto !important;
        width: 100% !important;
    }
}

/* Theme */
.bg-theme {
    background-color: #06402b !important;
}

.bg-theme-gradient {
    background: linear-gradient(180deg, #06402b 0%, #09593c 60%, #0d734e 100%) !important;
}

.text-theme {
    color: #06402b !important;
}

.border-theme {
    border-color: #06402b !important;
}

.border-theme-30 {
    border-color: rgba(6, 64, 43, 0.3) !important;
}

.border-theme-25 {
    border-color: rgba(6, 64, 43, 0.25) !important;
}