/* =====================================================
   CITY ALERTS – LOKALNE OSTRZEŻENIA (PER MIASTO)
   ===================================================== */

.city-alerts-box {
    margin-top: 16px;
    padding: 12px 14px;
    background: #111a27;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    font-size: 14px;
}

/* Tytuł */
.city-alerts-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffd84d;
}

/* Brak zagrożeń */
.city-alerts-empty {
    color: #9fb3d9;
    font-style: italic;
}

/* Alert */
.city-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    padding: 6px 8px;
    border-radius: 8px;
}

/* Ikona */
.city-alert-icon {
    font-size: 16px;
}

/* Poziomy */
.city-alert.level-1 {
    background: rgba(255, 216, 77, 0.12);
    color: #ffd84d;
}

.city-alert.level-2 {
    background: rgba(255, 174, 66, 0.15);
    color: #ffae42;
}

.city-alert.level-3 {
    background: rgba(255, 77, 77, 0.18);
    color: #ff4d4d;
}
