body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 20px;
}

h1 {
    margin-top: 0;
}

#clock {
    font-size: 4.2em;
    text-align: center;
    margin-bottom: 5px;
    color: #ccc;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#table-container {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: 12px;
    backdrop-filter: blur(3px);
}

table {
    background-color: rgba(20, 20, 20, 0.85);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #444;
    text-align: left;
}

th:nth-child(1), td:nth-child(1) {
    width: 30%;
}

th:nth-child(2), td:nth-child(2) {
    width: 40%;
}

th:nth-child(3), td:nth-child(3) {
    width: 15%;
}

th:nth-child(4), td:nth-child(4) {
    width: 30%;
    text-align: center;
}

th {
    background-color: #222;
    font-size: 1.3em;
}

td {
    font-size: 1.3em;
}

tr:nth-child(even) {
    background-color: #1a1a1a;
}

#page-indicator {
    text-align: right;
    margin-top: 10px;
    font-size: 1.9em;
    color: #aaa;
}

td.severity {
    color: white;
    font-weight: bold;
    text-align: center;
}

td.severity.information {
    background-color: #3399ff;
}

td.severity.warning {
    background-color: #ffcc00;
}

td.severity.average {
    background-color: #ff9933;
}

td.severity.high {
    background-color: #ff6666;
}

td.severity.disaster {
    background-color: #cc0000;
}

#server-banner {
    font-size: 1.7em;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    color: white;
    background-color: #333;
    transition: background-color 0.9s ease;
}

#countdown-timer {
    text-align: right;
    font-size: 1.6em;
    color: #888;
    margin-top: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

td.severity.high, td.severity.disaster {
    animation: blink 1s infinite;
}


#duck-easter-egg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
}

