/* ===== System Status: topbar dot + public incident banner ===== */

/* Topbar status pill becomes a link — keep it looking like plain text */
.re-tb-status-link {
    text-decoration: none;
    color: rgba(255,255,255,.68) !important;
    cursor: pointer;
}
.re-tb-status-link:hover {
    text-decoration: underline;
}

/* Dot colour states (default green comes from your existing .re-status-dot rule) */
.re-status-dot-orange {
    background-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}
.re-status-dot-red {
    background-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}
.re-status-dot-orange,
.re-status-dot-red {
    animation: reStatusPulse 1.6s ease-in-out infinite;
}
@keyframes reStatusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* ===== Incident banner ===== */
.re-status-banner {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.re-status-banner-degraded {
    background: #b45309; /* amber-800 */
}

.re-status-banner-critical {
    background: #b91c1c; /* red-700 */
}

.re-status-banner-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.re-status-banner-ico {
    flex: 0 0 auto;
    font-size: 16px;
}

.re-status-banner-text {
    flex: 1 1 auto;
}

.re-status-banner-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 6px;
    white-space: nowrap;
}
.re-status-banner-link:hover {
    color: #fff;
    opacity: 0.85;
}

.re-status-banner-close {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.85;
}
.re-status-banner-close:hover {
    opacity: 1;
}

.re-status-banner.re-status-banner-hidden {
    display: none;
}

@media (max-width: 767px) {
    .re-status-banner-inner {
        align-items: flex-start;
    }
    .re-status-banner-text {
        font-size: 13px;
    }
}
