body {
    
    background: #0f172a; 
    
    color: #f1f5f9; 
    font-family: 'Inter', 'Segoe UI', sans-serif; 
}


header {
    
    background: #1e293b; 
    
    border-bottom: 2px solid #6366f1; 
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.company-name {
    
    color: #818cf8; 
    font-weight: 700;
}

.status-type {
    
    color: #94a3b8; 
}

.header-right {
    
    color: #f1f5f9;
}

.logo {
    
    background: #4f46e5;
    
    color: #ffffff;
    
    border-radius: 10px; 
    padding: 6px 12px;
    font-weight: 600;
}

footer {
    
    background: #1e293b;
    
    border-top: 1px solid #4338ca;
    
    color: #64748b;
    font-size: 0.9em;
}

footer a {
    
    color: #a5b4fc; 
    text-decoration: none;
}


.hero h1 {
    
    color: #818cf8; 
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    
    color: #cbd5e1;
}

.hero-meta {
    
    background: rgba(30, 41, 59, 0.7); 
    
    border: 1px solid #6366f1;
    padding: 20px;
    
    border-radius: 15px; 
    
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2); 
}

.meta-label {
    
    color: #a5b4fc;
    text-transform: uppercase;
    font-size: 0.8em;
}

.meta-value {
    
    color: #f1f5f9;
    font-weight: 600;
}


.section-title {
    
    color: #f1f5f9;
    
    border-bottom: 2px solid #818cf8;
    padding-bottom: 5px;
    font-weight: 600;
}

.service {
    
    background: #1e293b;
    
    border: 1px solid #475569; 
    
    border-radius: 12px; 
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
    transition: all 0.3s ease;
}

.service:hover {
    
    background: #334155;
    
    border: 1px solid #818cf8;
    
    transform: translateY(-3px); 
    
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.service-info h3 {
    
    color: #a5b4fc;
    
    border-bottom: 1px dashed #475569;
    font-weight: 500;
}

.stat-row {
    
    border-bottom: 1px dotted #334155;
}

.stat-label {
    
    color: #a5b4fc;
}

.stat-value {
    
    color: #f1f5f9;
    font-weight: 600;
}

.uptime-percentage {
    
    color: #818cf8;
    font-weight: 700;
}

.uptime-label {
    
    color: #64748b;
}




.badge-operational {
    
    background: #2563eb; 
    
    color: #ffffff;
    
    border-radius: 6px;
    font-weight: 500;
}
.dot-up {
    
    background: #10b981; 
    border-radius: 50%;
}


.badge-degraded {
    
    background: #facc15;
    
    color: #0f172a;
    border-radius: 6px;
}
.dot-degraded {
    
    background: #facc15;
    border-radius: 50%;
}


.badge-outage {
    
    background: #dc2626;
    
    color: #ffffff;
    border-radius: 6px;
}
.dot-down {
    
    background: #dc2626;
    border-radius: 50%;
}


.chart-container {
    
    background: #1e293b;
    
    border: 1px solid #6366f1;
    
    border-radius: 12px;
    padding: 20px;
    
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}