* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    color: #0056b3; 
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    margin: 5px 0;
}

#services {
    display: flex;
    flex-direction: column; 
    align-items: center;
    margin-top: 20px;
}

.service {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #b3d4fc;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.service:hover {
    transform: scale(1.03);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}


.status.ok {
    color: #28a745;
}

.status.error {
    color: #dc3545;
}

.status.unknown {
    color: #ff8800;
}

#timer {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #0056b3;
}


