/* status.css */

.status-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: 'Google Sans', sans-serif;
    min-height: 80vh;
}

.page-title {
    font-size: 2rem;
    color: #202124;
    margin-bottom: 2rem;
    font-weight: 400;
}

.overall-status {
    background-color: #34A853;
    /* Google Green */
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.overall-status.operational {
    background-color: #34A853;
}

.overall-status.degraded {
    background-color: #FBBC04;
    color: #202124;
}

.overall-status.outage {
    background-color: #EA4335;
}

.status-icon-large svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.status-text-large h2 {
    font-size: 1.5rem;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.status-text-large p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.components-list {
    border: 1px solid #dadce0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.component-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #dadce0;
}

.component-item:last-child {
    border-bottom: none;
}

.component-name {
    font-size: 1rem;
    color: #202124;
    font-weight: 500;
}

.component-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.component-status.operational {
    color: #34A853;
}

.component-status.degraded {
    color: #F9AB00;
}

.component-status.outage {
    color: #EA4335;
}

.incidents-section h3 {
    font-size: 1.5rem;
    color: #202124;
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-bottom: 1px solid #dadce0;
    padding-bottom: 0.5rem;
}

.incident-day {
    margin-bottom: 2rem;
}

.incident-date {
    font-size: 1rem;
    color: #202124;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.incident-entry {
    margin-left: 1rem;
    border-left: 2px solid #dadce0;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.no-incidents {
    color: #5f6368;
    font-size: 0.95rem;
}

.incident-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.incident-title.solved {
    color: #5f6368;
}

.incident-title.investigating {
    color: #F9AB00;
}

.incident-body {
    color: #3c4043;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.incident-time {
    color: #5f6368;
    display: block;
    font-size: 0.85rem;
}