body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.server-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(33% - 20px); /* Adjust width for desired layout */
    margin-bottom: 20px;
    overflow: hidden; /* To contain the colored bar and shading */
    position: relative; /* For absolute positioning of shading */
}

.server-block::before,
.server-block::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: rgba(0, 0, 0, 0.05); /* Light shading color */
}

.server-block::before {
    left: 0;
}

.server-block::after {
    right: 0;
}

.server-header {
    height: 10px;
    background-color: #007bff; /* Example color - customize per server if needed */
    margin-bottom: 15px;
}

.server-info {
    padding: 15px;
}

.server-info p {
    margin-bottom: 8px;
}

.server-info strong {
    font-weight: bold;
    margin-right: 5px;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
    .server-block {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .server-block {
        width: 100%;
    }
}
