﻿.status-banner {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.status-banner-success {
    background-color: rgba(0, 163, 68, 0.20);
    border: 1px solid rgba(0, 163, 68, 0.40);
    color: rgb(0,163,68);
}

.status-banner-warning {
    background-color: #ffaf502e;
    border: 1px solid #ff9f3552;
    color: #fff1df;
}

.status-banner-error {
    background-color: rgba(217, 83, 79, 0.25);
    border: 1px solid rgba(217, 83, 79, 0.35);
    color: #ffeaea;
}

.status-card-light {
    background-color: #ffffff;
    border: 1.5px solid #0a8fa3;
    border-radius: 6px;
    padding: 18px 22px;
    box-shadow: none;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.default-font {
    color: #0a8fa3;
    font-size: 1.05rem;
    font-weight: 600;
}

.status-indicator svg {
    display: block;
}

.timeline-dark {
    position: relative;
    margin-top: 20px;
    padding-left: 30px;
}

    .timeline-dark::before {
        content: "";
        position: absolute;
        left: 35px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(10, 143, 163, 0.6);
    }

.timeline-item-dark {
    position: relative;
    margin-bottom: 32px;
    padding-left: 18px;
}

.timeline-dot-dark {
    width: 12px;
    height: 12px;
    background-color: #00b140;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    box-shadow: 0 0 0 4px rgba(0, 177, 64, 0.15);
}

.timeline-content-dark {
    background-color: #ffffff;
    padding: 18px 20px;
    border-radius: 6px;
    border: 1px solid rgba(10, 143, 163, 0.35);
    box-shadow: none;
}

.event-title-dark {
    color: #0a8fa3;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-description-dark {
    color: #0a8fa3;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-dates-dark {
    color: #5f7f86;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.event-update-card-dark {
    background-color: #f7fbfc;
    border: 1px solid rgba(10, 143, 163, 0.2);
    border-radius: 5px;
    padding: 10px 12px;
}

.section-title-dark {
    color: #0a8fa3;
    font-weight: 700;
}

.text-update-message {
    color: #0a8fa3;
    font-size: 0.8rem;
}

.text-update-date {
    color: #7a9aa1;
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .status-banner {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .timeline-dark::before {
        left: 8px;
    }

    .timeline-item-dark {
        padding-left: 12px;
    }
}

@media (max-width: 768px) {
    .timeline-content-dark {
        padding: 14px;
    }
}
