body {
    background: #0d1a26; 
    color: #f0f6fc; 
    font-family: 'Inter', 'Segoe UI', sans-serif; 
}


header {
    background: #152433; 
    border-bottom: 2px solid #0056b3; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.company-name {
    color: #4a90e2; 
    font-weight: 700;
}

.status-type {
    color: #a0a0a0; 
}

.header-right {
    color: #f0f6fc;
}

.logo {
    background: #0056b3;
    color: #f0f6fc;
    border-radius: 10px; 
    padding: 6px 12px;
    font-weight: 600;
}

footer a {
    color: #90b8e9; 
    text-decoration: none;
}


.hero h1 {
    color: #4a90e2; 
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    color: #c0c0c0;
}

.hero-meta {
    background: #1c2e40; 
    border: 1px solid #0056b3;
    padding: 20px;
    border-radius: 15px; 
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.2); 
}

.meta-label {
    color: #90b8e9;
    text-transform: uppercase;
    font-size: 0.8em;
}

.meta-value {
    color: #f0f6fc;
    font-weight: 600;
}


.section-title {
    color: #f0f6fc;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
    font-weight: 600;
}

.service {
    background: #1c2e40;
    border: 1px solid #2a415a; 
    border-radius: 12px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
    transition: all 0.3s ease;
}

.service:hover {
    background: #2a415a;
    border: 1px solid #4a90e2;
    transform: translateY(-3px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.service-info h3 {
    color: #90b8e9;
    border-bottom: 1px dashed #2a415a;
    font-weight: 500;
}

.stat-row {
    border-bottom: 1px dotted #2a415a;
}

.stat-label {
    color: #90b8e9;
}

.stat-value {
    color: #f0f6fc;
    font-weight: 600;
}

.uptime-percentage {
    color: #4a90e2;
    font-weight: 700;
}

.uptime-label {
    color: #6c757d;
}




.badge-operational {
    background: #007bff; 
    color: #f0f6fc;
    border-radius: 6px;
    font-weight: 500;
}
.dot-up {
    background: #28a745; 
    border-radius: 50%;
}


.badge-degraded {
    background: #ffc107;
    color: #152433;
    border-radius: 6px;
}
.dot-degraded {
    background: #ffc107;
    border-radius: 50%;
}


.badge-outage {
    background: #dc3545;
    color: #f0f6fc;
    border-radius: 6px;
}
.dot-down {
    background: #dc3545;
    border-radius: 50%;
}


.chart-container {
    background: #152433;
    border: 1px solid #0056b3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.2);
}