* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0 20px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
}

/* Status Banner */
.status-banner {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.status-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0;
}

.status-text p {
    display: none;
}

/* Status Colors */
.status-banner.operational {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
}

.status-banner.operational .status-indicator {
    background-color: #28a745;
}

.status-banner.maintenance {
    background-color: #d1ecf1;
    border-left: 5px solid #17a2b8;
}

.status-banner.maintenance .status-indicator {
    background-color: #17a2b8;
}

.status-banner.minor {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
}

.status-banner.minor .status-indicator {
    background-color: #ffc107;
}

.status-banner.partial {
    background-color: #ffe5cc;
    border-left: 5px solid #fd7e14;
}

.status-banner.partial .status-indicator {
    background-color: #fd7e14;
}

.status-banner.major {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
}

.status-banner.major .status-indicator {
    background-color: #dc3545;
}

/* Updates Section */
.updates-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.updates-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 500;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-updates {
    text-align: center;
    color: #6c757d;
    padding: 40px 0;
    font-size: 1.1rem;
}

.update-item {
    border-left: 4px solid #e9ecef;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.update-item:hover {
    border-left-color: #6c757d;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.update-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.update-status.operational {
    background-color: #28a745;
    color: white;
}

.update-status.maintenance {
    background-color: #17a2b8;
    color: white;
}

.update-status.minor {
    background-color: #ffc107;
    color: #333;
}

.update-status.partial {
    background-color: #fd7e14;
    color: white;
}

.update-status.major {
    background-color: #dc3545;
    color: white;
}

.update-time {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.update-time .time-label {
    font-weight: 600;
    color: #495057;
}

.update-time .time-relative {
    color: #868e96;
    font-style: italic;
}

.update-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.update-message {
    color: #495057;
    line-height: 1.6;
}

.update-eta {
    margin-top: 12px;
    padding: 8px 12px;
    background-color: #e7f3ff;
    border-left: 3px solid #0066cc;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #004080;
}

.update-eta strong {
    color: #003366;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .status-banner {
        padding: 20px;
    }

    .status-text h2 {
        font-size: 1.4rem;
    }

    .updates-section {
        padding: 20px;
    }

    .update-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
