/* Algemene stijlen */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'CF FBI Old Report', sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.header-logo {
    text-align: center;
    margin-bottom: 20px;
}
.header-logo img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

/* Knoppenbalk */
.icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons a {
    text-decoration: none;
    font-size: 40px;
    color: #333;
    transition: transform 0.3s ease;
}

.icons a:hover {
    transform: scale(1.2);
    color: #000;
}

/* Footer */
.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-family: 'CF FBI Old Report', sans-serif;
}

.footer .footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

.footer .footer-links a:hover {
    color: #dddddd;
}

/* Status Monitor - Online/Offline blokken */
.status-block {
    padding: 15px;
    margin: 5px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

/* Online status - groen */
.status-online {
    background-color: #28a745; /* Bootstrap groen */
    color: white;
}

/* Offline status - rood */
.status-offline {
    background-color: #dc3545; /* Bootstrap rood */
    color: white;
}

/* Aangepaste accordion header-kleur */
.accordion-button {
    background-color: #444 !important; /* Donkergrijs */
    color: white !important;
}

.accordion-button:not(.collapsed) {
    background-color: #444 !important; /* Donkergrijs bij open */
    color: white !important;
}

/* Badge voor offline adressen in ingeklapte modus */
.badge {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 50%;
}

/* Project Cards */
.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 200px; /* Zorgt ervoor dat alle kaarten even groot zijn */
    min-height: 200px;
}

.project-card a {
    color: #ffffff;
    text-decoration: none;
}

.project-card:hover {
    transform: scale(1.05);
}

/* Zorgt ervoor dat alle kaarten dezelfde hoogte behouden */
.project-card h4, .project-card p {
    margin: 5px 0;
}

/* Responsive layout */
@media (max-width: 768px) {
    .icons {
        gap: 15px;
    }
    .icons a {
        font-size: 30px;
    }
    .footer {
        font-size: 14px;
    }
    .project-card {
        height: auto;
        min-height: 180px; /* Kleinere hoogte op mobiel */
    }
}

