body {
    background-color: #121212; /* Dark background for a modern look */
    color: #e0e0e0; /* Light text for contrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}

.header-container {
    text-align: center;
    margin-bottom: 30px;
}

.header-container h1 {
    font-size: 2.5em;
    color: #4CAF50; /* A pop of color */
    margin: 0;
}

.header-container p {
    font-size: 1.1em;
    color: #bdbdbd;
}

.site-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px; /* Space between the cards */
}

.site-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.site-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.site-card p {
    margin: 0;
    font-size: 0.9em;
    color: #a0a0a0;
}

.site-id {
    font-weight: bold;
    font-size: 1.5em;
    color: inherit; /* The link color will be determined by the status */
    text-decoration: none;
}

.site-id:hover {
    text-decoration: underline;
}

.status-good {
    border: 2px solid #4CAF50; /* Green border */
    color: #4CAF50;
}

.status-warning {
    border: 2px solid #FFC107; /* Yellow border */
    color: #FFC107;
}

.status-critical {
    border: 2px solid #F44336; /* Red border */
    color: #F44336;
}

