    /* ===== Page Layout ===== */
    .peta-smk-wrapper {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: #f8fafc;
        display: block;
        overflow: hidden;
        z-index: 999;
    }

    /* ===== Map Area Container ===== */
    .map-area {
        width: 100%;
        height: 100%;
        position: relative;
    }

    /* ===== Map Container ===== */
    #map {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* ===== Override OL default controls ===== */
    .ol-control {
        display: none !important;
    }

    /* ===== Custom Zoom Controls ===== */
    .map-controls {
        position: absolute;
        bottom: 96px;
        right: 32px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 20;
    }

    .map-controls button {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(2, 56, 116, 0.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    .map-controls button:hover {
        background: rgba(2, 56, 116, 0.95);
        transform: scale(1.08);
        box-shadow: 0 8px 32px rgba(2, 56, 116, 0.45);
    }

    .map-controls button:active {
        transform: scale(0.95);
    }

    /* ===== Sidebar Panel ===== */
    .map-header {
        position: absolute;
        top: 20px;
        left: 20px;
        width: min(420px, calc(100vw - 40px));
        max-height: calc(100dvh - 40px);
        min-height: auto;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 22px 18px;
        z-index: 20;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .map-header::-webkit-scrollbar {
        width: 6px;
    }

    .map-header::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 10px;
    }

    .map-header__badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        border-radius: 100px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #0284c7;
        background: #e0f2fe;
        border: 1px solid #bae6fd;
        margin-bottom: 16px;
    }

    .map-header__badge .pulse-dot {
        width: 8px;
        height: 8px;
        background: #0284c7;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    .map-header__title {
        font-size: 24px;
        font-weight: 800;
        color: #111827;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .map-header__subtitle {
        font-size: 13px;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ===== Filter Panel ===== */
    .map-filters {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid #f3f4f6;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 10px;
        align-items: end;
    }

    .filter-group {
        position: relative;
    }

    .filter-label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #6b7280;
        margin-bottom: 5px;
    }

    .filter-select-wrapper {
        position: relative;
    }

    .filter-select-wrapper::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #9ca3af;
        pointer-events: none;
        transition: transform 0.2s ease;
    }

    .filter-select {
        width: 100%;
        padding: 9px 32px 9px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #f9fafb;
        color: #111827;
        font-size: 12px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        outline: none;
    }

    .filter-select:hover {
        border-color: #d1d5db;
        background: #f3f4f6;
    }

    .filter-select:focus {
        border-color: #3b82f6;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }

    .filter-select:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: #f3f4f6;
    }

    .filter-reset-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #ffffff;
        color: #4b5563;
        font-size: 11px;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        cursor: pointer;
        transition: all 0.25s ease;
        margin-top: 4px;
        align-self: flex-start;
    }

    .filter-reset-btn:hover {
        background: #fef2f2;
        border-color: #fca5a5;
        color: #ef4444;
    }

    .filter-active-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 10px;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 600;
        color: #0369a1;
        background: #e0f2fe;
        border: 1px solid #bae6fd;
        margin-top: 4px;
        opacity: 0;
        transform: translateY(-4px);
        transition: all 0.3s ease;
    }

    .filter-active-tag.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ===== Search Box ===== */
    .search-box {
        position: relative;
        margin-bottom: 24px;
        max-width: 400px;
    }

    .search-box__input-wrapper {
        position: relative;
    }

    .search-box__icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        pointer-events: none;
    }

    .search-box__input {
        width: 100%;
        padding: 12px 16px 12px 42px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #f9fafb;
        color: #111827;
        font-size: 13px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        outline: none;
        transition: all 0.25s ease;
    }

    .search-box__input::placeholder {
        color: #9ca3af;
    }

    .search-box__input:focus {
        border-color: #3b82f6;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    }

    .search-box__clear {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border: none;
        background: #e5e7eb;
        border-radius: 6px;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        transition: all 0.15s ease;
    }

    .search-box__clear:hover {
        background: #d1d5db;
        color: #111827;
    }

    .search-results {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        z-index: 50;
        overflow: hidden;
        display: none;
    }

    .search-results.active {
        display: block;
    }

    .search-result-item {
        padding: 12px 16px;
        cursor: pointer;
        border-bottom: 1px solid #f3f4f6;
        transition: background 0.15s ease;
    }

    .search-result-item:last-child {
        border-bottom: none;
    }

    .search-result-item:hover {
        background: #f0f7ff;
    }

    .search-result-item__name {
        font-size: 13px;
        font-weight: 700;
        color: #111827;
        line-height: 1.4;
    }

    .search-result-item__meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 3px;
    }

    .search-result-item__npsn {
        font-size: 11px;
        font-weight: 600;
        color: #3b82f6;
        background: #eff6ff;
        padding: 1px 6px;
        border-radius: 4px;
    }

    .search-result-item__kota {
        font-size: 11px;
        color: #6b7280;
    }

    .search-no-results {
        padding: 16px;
        text-align: center;
        font-size: 12px;
        color: #9ca3af;
    }

    .search-loading {
        padding: 16px;
        text-align: center;
        font-size: 12px;
        color: #6b7280;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .search-loading__spinner {
        width: 14px;
        height: 14px;
        border: 2px solid #e5e7eb;
        border-top-color: #3b82f6;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
    }

    /* ===== Popup Overlay ===== */
    .ol-popup {
        position: absolute;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 14px;
        padding: 20px 22px 16px;
        min-width: 280px;
        max-width: 340px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-family: 'Inter', sans-serif;
        z-index: 30;
    }

    .ol-popup::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: rgba(255, 255, 255, 0.97);
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transform: translateX(-50%) rotate(45deg);
    }

    .ol-popup-closer {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #9ca3af;
        font-size: 18px;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .ol-popup-closer:hover {
        background: #f3f4f6;
        color: #374151;
    }

    .popup-nama {
        font-size: 15px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 8px;
        padding-right: 24px;
        line-height: 1.4;
    }

    .popup-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 10px;
    }

    .popup-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 600;
    }

    .popup-badge--npsn {
        background: #eff6ff;
        color: #2563eb;
        border: 1px solid #bfdbfe;
    }

    .popup-badge--status {
        background: #f0fdf4;
        color: #16a34a;
        border: 1px solid #bbf7d0;
    }

    .popup-badge--akreditasi {
        background: #fefce8;
        color: #ca8a04;
        border: 1px solid #fde68a;
    }

    .popup-info-row {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 6px;
    }

    .popup-info-row svg {
        flex-shrink: 0;
        margin-top: 2px;
        color: #9ca3af;
    }

    .popup-info-text {
        font-size: 12px;
        color: #6b7280;
        line-height: 1.5;
    }

    .popup-keahlian {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f3f4f6;
    }

    .popup-keahlian-label {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #9ca3af;
        margin-bottom: 4px;
    }

    .popup-keahlian-value {
        font-size: 11px;
        color: #374151;
        font-weight: 500;
    }

    /* ===== Loading Indicator ===== */
    .map-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 25;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .map-loading.active {
        display: flex;
    }

    .map-loading-spinner {
        width: 36px;
        height: 36px;
        border: 3px solid rgba(2, 56, 116, 0.15);
        border-top-color: #023874;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    .map-loading-text {
        font-size: 12px;
        font-weight: 600;
        color: #023874;
        background: rgba(255, 255, 255, 0.9);
        padding: 4px 14px;
        border-radius: 8px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* ===== School Count Badge ===== */
    .map-school-count {
        position: absolute;
        top: 80px;
        right: 24px;
        z-index: 20;
        background: rgba(2, 56, 116, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 8px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        transition: opacity 0.3s ease;
    }

    .map-school-count__stat {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .map-school-count__number {
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
        font-variant-numeric: tabular-nums;
    }

    .map-school-count__label {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .map-school-count__divider {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.15);
    }

    /* ===== Map Legend ===== */
    .map-legend {
        position: absolute;
        top: 120px;
        right: 24px;
        z-index: 20;
        background: rgba(2, 56, 116, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        font-family: 'Inter', sans-serif;
        min-width: 150px;
    }

    .map-legend__title {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 10px;
    }

    .map-legend__items {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .map-legend__item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .map-legend__dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        flex-shrink: 0;
    }

    .map-legend__label {
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
    }

    /* ===== Map Type Switcher ===== */
    .map-type-switcher {
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 20;
        display: flex;
        gap: 4px;
        background: rgba(2, 56, 116, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 5px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        animation: slideInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
        opacity: 0;
    }

    .map-type-btn {
        padding: 8px 18px;
        border-radius: 10px;
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
    }

    .map-type-btn.active {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .map-type-btn:hover:not(.active) {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.07);
    }

    /* ===== Back Home Button ===== */
    .back-home-btn {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border: 1px solid #dbeafe;
        background: #eff6ff;
        color: #1d4ed8;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 12px;
        align-self: flex-start;
        box-shadow: 0 2px 10px rgba(2, 56, 116, 0.08);
        transition: all 0.2s ease;
    }

    .back-home-btn:hover {
        background: #dbeafe;
        border-color: #bfdbfe;
        transform: translateY(-1px);
        color: #1e40af;
    }

    /* ===== Coordinates Display ===== */
    .map-coordinates {
        position: absolute;
        bottom: 8px;
        right: 32px;
        left: auto;
        z-index: 20;
        background: rgba(2, 56, 116, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        animation: slideInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        opacity: 0;
    }

    .coord-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .coord-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.4);
    }

    .coord-value {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        font-variant-numeric: tabular-nums;
    }

    .coord-divider {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.15);
    }

    /* ===== Fullscreen Button ===== */
    .fullscreen-btn {
        position: absolute;
        bottom: 44px;
        right: 32px;
        z-index: 20;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(2, 56, 116, 0.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        color: #ffffff;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    .fullscreen-btn:hover {
        background: rgba(2, 56, 116, 0.95);
        transform: scale(1.08);
        box-shadow: 0 8px 32px rgba(2, 56, 116, 0.45);
    }

    /* ===== Animations ===== */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.4;
            transform: scale(0.8);
        }
    }

    /* ===== Mobile Sidebar Toggle ===== */
    .mobile-sidebar-toggle {
        display: none;
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 25;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(2, 56, 116, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        color: #ffffff;
        border-radius: 12px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    .mobile-sidebar-toggle:hover {
        background: rgba(2, 56, 116, 0.95);
        box-shadow: 0 8px 32px rgba(2, 56, 116, 0.45);
    }

    /* ===== Mobile Overlay ===== */
    .mobile-overlay {
        display: none;
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 29;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
    }

    /* ===== Mobile Sidebar Close ===== */
    .mobile-sidebar-close {
        display: none;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .peta-smk-wrapper {
            height: 100dvh;
            overflow: hidden;
        }

        .map-area {
            height: 100%;
        }

        /* Sidebar becomes a slide-out drawer */
        .map-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 85vw;
            max-width: 380px;
            min-width: auto;
            height: 100%;
            z-index: 30;
            border-right: 1px solid #e5e7eb;
            border-top: none;
            border-radius: 0;
            padding: 24px 20px;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
        }

        .map-header.open {
            transform: translateX(0);
        }

        .mobile-sidebar-close {
            display: flex;
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: #f3f4f6;
            color: #4b5563;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 40;
            transition: all 0.2s ease;
        }

        .mobile-sidebar-close:hover {
            background: #e5e7eb;
        }

        /* Show toggle button */
        .mobile-sidebar-toggle {
            display: flex;
        }

        /* Show overlay when sidebar open */
        .mobile-overlay {
            display: block;
            pointer-events: none;
        }

        .mobile-overlay.active {
            pointer-events: auto;
        }

        .map-header__title {
            font-size: 18px;
        }

        .map-header__subtitle {
            font-size: 12px;
        }

        .map-filters {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 16px;
            padding-top: 16px;
        }

        .search-box {
            max-width: 100%;
        }

        .filter-select {
            font-size: 11px;
            padding: 9px 30px 9px 10px;
        }

        /* Map overlays repositioned */
        .map-type-switcher {
            top: 16px;
            right: 16px;
            left: auto;
            padding: 3px;
        }

        .map-type-btn {
            padding: 6px 12px;
            font-size: 11px;
        }

        .map-school-count {
            top: 66px;
            right: 16px;
            padding: 6px 12px;
            gap: 10px;
        }

        .map-school-count__number {
            font-size: 13px;
        }

        .map-school-count__label {
            font-size: 9px;
        }

        .map-legend {
            top: 110px;
            right: 16px;
            padding: 10px 12px;
            min-width: 130px;
        }

        .map-legend__label {
            font-size: 10px;
        }

        .map-legend__dot {
            width: 10px;
            height: 10px;
        }

        .map-controls {
            bottom: 92px;
            right: 16px;
        }

        .map-controls button {
            width: 40px;
            height: 40px;
        }

        .fullscreen-btn {
            bottom: 42px;
            right: 16px;
            width: 40px;
            height: 40px;
        }

        .map-coordinates {
            bottom: 6px;
            right: 16px;
            left: auto;
            border-radius: 10px;
            padding: 6px 12px;
            gap: 10px;
        }

        .coord-value {
            font-size: 11px;
        }

        .coord-label {
            font-size: 9px;
        }

        /* Popup adjustments */
        .ol-popup {
            min-width: 240px;
            max-width: 280px;
            padding: 16px 18px 12px;
        }

        .popup-nama {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .map-header {
            width: 90vw;
            padding: 20px 16px;
        }

        .back-home-btn {
            padding: 6px 9px;
            font-size: 10px;
            gap: 6px;
            margin-top: 10px;
        }

        .map-header__badge {
            font-size: 10px;
            padding: 3px 10px;
        }

        .map-header__title {
            font-size: 16px;
        }

        .filter-label {
            font-size: 9px;
        }

        .filter-select {
            font-size: 11px;
            padding: 8px 30px 8px 10px;
            border-radius: 8px;
        }

        .map-type-switcher {
            padding: 2px;
        }

        .map-type-btn {
            padding: 5px 8px;
            font-size: 10px;
        }

        .map-legend {
            top: 105px;
            right: 12px;
            padding: 8px 10px;
            min-width: 120px;
        }

        .map-school-count {
            top: 60px;
            right: 12px;
            padding: 5px 10px;
        }

        .map-coordinates {
            padding: 5px 10px;
            gap: 8px;
        }
    }
