.bmkg-weather-container {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Menu Navigasi */
.weather-nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    padding: 0;
    border-radius: 4px 4px 0 0;
}

.nav-item {
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.nav-item:hover {
    color: #000;
    background: #f0f0f0;
}

.nav-item.active {
    color: #000;
    border-bottom-color: #3b82f6;
    background: #fff;
    font-weight: 600;
}

/* Konten Tab */
.weather-tab-content {
    display: none;
}

.weather-tab-content.active,
.weather-tab-content[style*="display: block"] {
    display: block !important;
}

.weather-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1a202c;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.weather-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.weather-header, .weather-row {
    display: table-row;
}

.city-column, .date-column, .city-name, .weather-cell {
    display: table-cell;
    padding: 15px;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
}

.weather-header {
    background: #f5f5f5;
    font-weight: bold;
}

.date-column {
    text-align: center;
    min-width: 100px;
    max-width: 120px;
}

.day-name {
    font-size: 14px;
    color: #666;
}

.date-num {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.city-name {
    font-weight: 500;
    color: #1a202c;
    min-width: 150px;
}

.weather-cell {
    text-align: center;
}

.weather-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.weather-desc {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.temperature, .humidity {
    font-size: 13px;
    color: #333;
    margin: 4px 0;
}

.temp-icon, .humidity-icon {
    margin-right: 4px;
}

.weather-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
    color: #666;
}

/* Peta Radar */
.radar-map-container {
    position: relative;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#radar-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}

.radar-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.radar-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.radar-toggle-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.radar-toggle-btn.active {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

.radar-icon {
    font-size: 18px;
}

.loading-weather {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.weather-error {
    text-align: center;
    padding: 40px;
    color: #dc2626;
    font-size: 16px;
}

@media (max-width: 768px) {
    .bmkg-weather-container {
        overflow-x: auto;
        padding: 15px;
    }
    
    .weather-nav-menu {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        white-space: nowrap;
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .weather-table {
        min-width: 800px;
    }
    
    .date-column {
        min-width: 80px;
        max-width: 100px;
        font-size: 11px;
    }
    
    .weather-cell {
        font-size: 11px;
    }
    
    .weather-title {
        font-size: 18px;
    }
    
    #radar-map {
        height: 400px;
    }
    
    .radar-controls {
        flex-direction: column;
        bottom: 10px;
    }
    
    .radar-toggle-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}