.bmkg-weather-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 12px;
}

.bmkg-attribution {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px;
    background: white;
    border-radius: 6px;
}

.bmkg-refresh-wrapper {
    text-align: right;
    margin-bottom: 15px;
}

.bmkg-refresh-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bmkg-refresh-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.bmkg-refresh-btn:active {
    transform: translateY(0);
}

.bmkg-cities-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.bmkg-city-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bmkg-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bmkg-city-name {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.bmkg-weather-info {
    margin-top: 10px;
}

.bmkg-weather-item {
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid #ecf0f1;
}

.bmkg-label {
    font-weight: bold;
    color: #7f8c8d;
    display: inline-block;
    width: 100px;
}

.bmkg-value {
    color: #2c3e50;
    font-weight: 500;
}

.bmkg-weather-desc {
    margin-top: 15px;
    padding: 8px 12px;
    background: #ecf0f1;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    color: #2980b9;
}

.bmkg-no-data,
.bmkg-error {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
    background: #fdf0ed;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .bmkg-cities-grid {
        grid-template-columns: 1fr !important;
    }
    
    .bmkg-city-card {
        padding: 15px;
    }
    
    .bmkg-city-name {
        font-size: 18px;
    }
}