    /* Custom styles untuk map */
    
    .map-wrapper {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
    }
    .map-controls {
        margin-bottom: 15px;
    }
    
    .map-wrapper:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    }
    
    .leaflet-popup-content-wrapper {
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .leaflet-popup-content {
        font-family: 'Poppins', sans-serif;
        text-align: center;
        line-height: 1.5;
    }
    
    .custom-marker-popup h5 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .custom-marker-popup p {
        color: #7f8c8d;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .btn-group .btn {
        border-radius: 0;
    }
    
    .btn-group .btn:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    
    .btn-group .btn:last-child {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .card {
        transition: all 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }
    
    /* Custom marker animation */
    @keyframes markerBounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-8px);
        }
        60% {
            transform: translateY(-4px);
        }
    }
    
    .leaflet-marker-icon {
        animation: markerBounce 2s ease-in-out infinite;
    }
        .weather-forecast-container {
            margin: 40px 0;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
    
        .weather-header {
            background: linear-gradient(135deg, #c35817 0%, #ff8400 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
    
        .weather-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }
    
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
    
        .weather-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }
    
        .weather-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
    
        .weather-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
        }
    
        .info-box {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #ff7675;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
    
        .info-title {
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
    
        .info-text {
            color: #636e72;
            line-height: 1.5;
        }
    
        .day-section {
            margin-bottom: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .day-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
    
        .day-header {
            background: linear-gradient(135deg, #d0f0c0 0%, #9dc183 100%);
            padding: 20px;
            font-weight: 700;
            font-size: 1.3rem;
            color: #2d3436;
            text-align: center;
            position: relative;
        }
    
        .day-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0b6623, #0b6623);
            border-radius: 2px;
        }
    
        .hourly-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1px;
            background: #f1f2f6;
        }
    
        .hour-card {
            background: white;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
    
        .hour-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
            transition: left 0.5s ease;
        }
    
        .hour-card:hover::before {
            left: 100%;
        }
    
        .hour-card:hover {
            background: linear-gradient(135deg, #d0f0c0 0%, #0b6623 100%);
            color: white;
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 10px 25px rgba(116, 185, 255, 0.4);
        }
    
        .hour-time {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #2d3436;
        }
    
        .hour-card:hover .hour-time {
            color: white;
        }
    
        .hour-temp {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 15px 0;
            color: #0b6623;
        }
    
        .hour-card:hover .hour-temp {
            color: white;
        }
    
        .weather-icon {
            width: 50px;
            height: 50px;
            margin: 10px auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
    
        .hour-card:hover .weather-icon {
            transform: scale(1.2);
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }
    
        .weather-desc {
            font-size: 0.85rem;
            color: #636e72;
            text-transform: capitalize;
            font-weight: 500;
            line-height: 1.3;
        }
    
        .hour-card:hover .weather-desc {
            color: rgba(255, 255, 255, 0.9);
        }
    
        .temp-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 5px;
        }
    
        .temp-hot {
            background: linear-gradient(135deg, #ff7675, #e84393);
            color: white;
        }
    
        .temp-warm {
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            color: white;
        }
    
        .temp-cool {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
        }
    
        .temp-cold {
            background: linear-gradient(135deg, #a29bfe, #6c5ce7);
            color: white;
        }
    
        @media (max-width: 768px) {
            .weather-title {
                font-size: 1.8rem;
            }
            
            .hourly-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            
            .hour-card {
                padding: 15px;
            }
            
            .hour-temp {
                font-size: 1.5rem;
            }
        }

        .weather-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            animation: fadeIn 0.3s ease;
        }

        .weather-modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: slideIn 0.3s ease;
            overflow: hidden;
        }

        .weather-modal-header {
            background: linear-gradient(135deg, #8a9a5b 0%, #4f7942 100%);
            color: white;
            padding: 20px 25px;
            text-align: center;
            position: relative;
        }

        .weather-modal-body {
            padding: 25px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .weather-close {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            background: none;
            padding: 5px 10px;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .weather-close:hover {
            background-color: rgba(255,255,255,0.2);
        }

        .weather-section {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            background-color: #f8f9fa;
        }

        .weather-section h6 {
            color: #495057;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .weather-item {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .weather-item i {
            margin-right: 8px;
            width: 20px;
        }

        .temp-display {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffff;
            text-align: center;
            margin: 15px 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .weather-advice {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            border-left: 4px solid #e17055;
        }

        .weather-tips {
            background: linear-gradient(135deg, #a8e6cf 0%, #88d8a3 100%);
            border-left: 4px solid #00b894;
        }

        .weather-equipment {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
            border-left: 4px solid #2d3436;
        }

        .weather-equipment h6 {
            color: white;
        }