html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.stat-card h3 {
    margin: 0;
    font-weight: bold;
}
.server-card {
    cursor: pointer;
    transition: 0.2s;
}
.server-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

