* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    color: #94a3b8;
    font-size: 16px;
}

.server-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.server-info div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.server-info span,
.info-box span {
    color: #94a3b8;
    font-size: 13px;
}

.server-info strong,
.info-box strong {
    color: #f8fafc;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #334155;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.value {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.status {
    color: #22c55e;
    font-weight: bold;
}

.info-section,
.process-section,
.alert-section {
    background: #1e293b;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    border: 1px solid #334155;
}

.info-section h2,
.process-section h2,
.alert-section h2 {
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-box {
    background: #0f172a;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

pre {
    background: #020617;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
}

.services {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service {
    background: #0f172a;
    padding: 15px 20px;
    border-radius: 10px;
}

#alerts {
    padding: 15px;
    border-radius: 10px;
    background: #0f172a;
}

@media (max-width: 800px) {

    .cards {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .server-info {
        flex-direction: column;
    }

    header h1 {
        font-size: 28px;
    }
}
