/* style-status.css */
.status-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.status-header {
    background: #18181b;
    border: 1px solid #303032;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.status-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.status-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
}

.status-indicator.large {
    width: 40px;
    height: 40px;
}

/* Status Colors */
.operational { background-color: #00ff64; box-shadow: 0 0 15px rgba(0, 255, 100, 0.4); }
.partial_outage { background-color: #ffd700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
.major_outage { background-color: #eb0400; box-shadow: 0 0 15px rgba(235, 4, 0, 0.4); }
.loading { background-color: #303032; animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-card {
    background: #18181b;
    border: 1px solid #303032;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #efeff1;
}

.service-status {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Uptime Bar */
.uptime-bar {
    display: flex;
    gap: 2px;
    height: 34px;
    margin-bottom: 0.8rem;
}

.uptime-bit {
    flex: 1;
    border-radius: 2px;
    background: #303032;
}

.uptime-bit.operational { background-color: #00ff64; opacity: 0.8; }
.uptime-bit.partial { background-color: #ffd700; }
.uptime-bit.major { background-color: #eb0400; }

.service-footer {
    font-size: 0.8rem;
    color: #adadb8;
    text-align: right;
}

.incidents-log {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #303032;
}

.incidents-log h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.incident-item {
    background: #18181b;
    border: 1px solid #303032;
    padding: 1.2rem;
    border-radius: 6px;
}

.incident-date {
    font-size: 0.85rem;
    color: #9146ff;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}
