body {
    font-family: Poppins, sans-serif !important;
    background-color: rgb(var(--neutral-900));
    margin: 0;
    padding: 2rem;
}
.container {
    max-width: 850px;
    margin: 0 auto;
}
.page-status {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.page-status-state {
    font-size: 0.875rem;
    font-weight: 500;
}
.page-status-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
.component {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 8px;
    border: 1px solid rgb(var(--neutral-600));
}
.component-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.component-name {
    font-size: 1.25rem;
    font-weight: 600;
}
.component-status {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.status-operational {
    color: rgb(var(--success-700));
}
.status-downtime {
    color: rgb(var(--error-700));
}
.status-under-maintenance {
    color: rgb(var(--info-500));
}
.status-degraded-performance {
    color: rgb(var(--brand-500));
}
.status-partial-outage {
    color: rgb(var(--brand-500));
}
.status-major-outage {
    color: rgb(var(--error-700));
}
.page-status-operational {
    background-color: rgb(var(--success-900));
}
.page-status-downtime {
    background-color: rgb(var(--error-900));
}
.page-status-under-maintenance {
    background-color: rgb(var(--info-900));
}
.page-status-degraded-performance {
    background-color: rgb(var(--brand-600));
}
.page-status-partial-outage {
    background-color: rgb(var(--brand-600));
}
.page-status-major-outage {
    background-color: rgb(var(--error-900));
}
.timeline-bar {
    display: flex;
    width: 100%;
    height: 30px;
    border-radius: 0.25rem;
    gap: 4px;
    justify-content: space-between;
}
@media (max-width: 499px) {
    .timeline-bar > .timeline-segment:nth-child(-n + 60) {
        display: none;
    }

    .thirty-days {
        display: block !important;
    }
}

@media (max-width: 599px) and (min-width: 499px) {
    .timeline-bar > .timeline-segment:nth-child(-n + 45) {
        display: none;
    }

    .forty-five-days {
        display: block !important;
    }
}

@media (max-width: 849px) and (min-width: 600px) {
    .timeline-bar > .timeline-segment:nth-child(-n + 30) {
        display: none;
    }

    .sixty-days {
        display: block !important;
    }
}

@media (min-width: 850px) {
    .ninety-days {
        display: block !important;
    }
}

.thirty-days,
.forty-five-days,
.sixty-days,
.ninety-days {
    display: none;
}

.days-ago {
    display: flex;
    flex-direction: row;
}

.timeline-segment {
    flex-grow: 1;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.timeline-segment { -webkit-tap-highlight-color: transparent; }

.timeline-segment .tooltip {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;

    width: 250px;
    max-width: calc(100vw - 24px);
    background-color: rgb(var(--neutral-700));
    text-align: left;
    border-radius: 6px;
    padding: 10px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    pointer-events: none;
}

.timeline-segment .tooltip.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.tooltip-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(var(--neutral-700));
    transform: rotate(45deg);
}
.tooltip-date {
    font-weight: bold;
    margin-bottom: 5px;
}
.tooltip-incident {
    margin-top: 10px;
}
.tooltip-incident-title {
    font-weight: bold;
}
.timeline-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: rgb(var(--neutral-500));
}
.incidents-section {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgb(var(--neutral-600));
}
.incidents-header {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.incidents-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.incidents-description {
    margin: 0;
    font-size: 0.875rem;
}
.incident-entry {
    padding-top: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444444;
}
.incident-entry:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.incident-metadata {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
}
.incident-updates {
    margin-top: 0.75rem;
}
.incident-update {
    margin: 1.5rem 0;
}
.incident-update-date {
    display: block;
    margin: 0.5rem 0;
}
.incident-update-empty {
    margin: 0;
    font-style: italic;
}
.incidents-empty {
    margin: 0;
}
.logo {
    height: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 2rem;
}