.bmkg-weather-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
}

.bmkg-attribution {
    text-align: center;
    font-size: 12px;
    color: #eee;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.bmkg-city-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.bmkg-city-card:hover {
    transform: translateY(-5px);
}

.bmkg-city-name {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.bmkg-current-weather {
    text-align: center;
}

.bmkg-weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.bmkg-temp {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.bmkg-weather-desc {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.bmkg-weather-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 13px;
    text-align: left;
}

.bmkg-weather-details div {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

.bmkg-section-title {
    font-size: 14px;
    font-weight: bold;
    color: #2980b9;
    margin: 15px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #ecf0f1;
}

.bmkg-forecast-item {
    background: #f0f4f8;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.bmkg-error {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
    background: #fdf0ed;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .bmkg-cities-grid {
        grid-template-columns: 1fr !important;
    }
}