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

.container {
    text-align: center;
}

.status-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #e5e7eb;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.logo {
    width: 28px;
    height: 28px;
    color: #4f46e5;
    margin-right: 12px;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.status-body {
    margin-bottom: 24px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    background-color: #e0fbe4;
    border-radius: 16px;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #34d399;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.status-text {
    font-size: 16px;
    font-weight: 500;
    color: #065f46;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.status-footer {
    padding-top: 24px;
    border-top: 1px solid #f0f2f5;
}

.health-link {
    font-size: 14px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.health-link:hover {
    color: #3730a3;
}

.footer-text {
    margin-top: 24px;
    font-size: 12px;
    color: #9ca3af;
}
