/* meteoalarm.css — Лента за временски предупредувања */

#meteo-alarm-bar {
    position: relative;
    z-index: 5;
}

.alarm-item {
    background: rgba(255, 193, 7, 0.16);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

.alarm-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    cursor: pointer;
    max-width: 960px;
    margin: 0 auto;
    transition: background 0.15s ease;
}

.alarm-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.alarm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.alarm-text {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.alarm-text strong {
    font-weight: 800;
}

.alarm-expires {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    white-space: nowrap;
}

.alarm-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.alarm-arrow.open {
    transform: rotate(180deg);
}

.alarm-detail {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px 14px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.alarm-detail p {
    margin-bottom: 6px;
}

.alarm-detail p:last-child {
    margin-bottom: 0;
}

.alarm-regions {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.alarm-source {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .alarm-row {
        padding: 8px 14px;
        gap: 8px;
    }
    .alarm-text { font-size: 12px; }
    .alarm-expires { display: none; }
    .alarm-detail { padding: 0 14px 12px; }
}