body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
    color: #1e293b;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

/* Başlık */
.header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4f46e5; /* Mor Marka Rengi */
    margin-bottom: 30px;
}

/* Ana Durum Bölümü */
.status-section {
    padding: 20px 0;
}

.status-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0 15px;
    color: #16a34a;
}

.status-section .message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
}

/* Durum Göstergesi (Operational) */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.status-indicator.active {
    background-color: #dcfce7;
    color: #16a34a;
}

.status-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #16a34a;
    animation: pulse 1.5s infinite; /* Hafif Animasyon */
}

/* Animasyon */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Servis Detayları Kutusu */
.details-box {
    text-align: left;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.status-tag {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0;
}

.active-tag {
    background-color: #dcfce7;
    color: #16a34a;
}

/* Güncelleme Zamanı ve Alt Bilgi */
.timestamp {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 30px;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer a {
    color: #4f46e5;
    text-decoration: none;
}

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