body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.header {
    background: #eee;
    color: #333;
    padding: 40px 0;
    margin-bottom: 40px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-image {
    max-height: 80px;
    max-width: 300px;
    height: auto;
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.status-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-group {
    margin-bottom: 50px;
}

.service-group-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

.continent-header {
    font-size: 1.2em;
    font-weight: 500;
    color: #555;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    /* border-left: 4px solid #667eea; */
    background-color: #f8f9fa;
    padding: 10px 15px;
    /* border-radius: 5px; */
    font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.status-item {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.status-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-description {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-operational {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-degraded {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-outage {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-maintenance {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #99ccff;
}

.status-inactive {
    background-color: #e9ecef;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.overall-status {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.overall-status h2 {
    color: #28a745;
    font-size: 2em;
    margin-bottom: 10px;
}

.overall-status p {
    color: #666;
    font-size: 1.1em;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-top: 40px;
    padding: 20px;
}

.metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    flex: 1;
    min-width: 100px;
    margin: 5px;
}

.metric-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
}

.metric-label {
    font-size: 0.8em;
    color: #666;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .status-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .status-badge {
        margin-top: 10px;
    }
    
    .metrics {
        flex-direction: column;
    }
} 