body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: #1b1b1b;
    color: #b0b0b0;
    line-height: 1.4;
    margin: 0;
    padding: 10px;
}

.container {
    background-color: #2c2c2c;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 10px auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h2 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px auto;
    background-color: #3c3c3c;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #555;
}

th {
    background-color: #444;
    color: #ffcc00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background-color: #3a3a3a;
}

.up, .ok, .dot {
    color: #4CAF50;
}

.sync {
    color: #FFC107;
}

.down {
    color: #F44336;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    th, td {
        padding: 6px;
    }
}
