/* Server Grid Fix */
.server-list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

.server-card {
    min-width: 0 !important;
    padding: 1rem !important;
}

.server-card h3 {
    font-size: 1.2rem !important;
    margin: 0.5rem 0 !important;
}

.server-card > div:first-child {
    font-size: 36px !important;
}

/* Ensure container is wide enough */
section.container {
    max-width: 1300px !important;
}

@media (max-width: 1200px) {
    .server-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .server-list {
        grid-template-columns: 1fr !important;
    }
}
