* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #333, #666); /* Zwart-grijs verloop */
    color: #fff;
    margin: 0;
}

a {
    text-decoration: none;
    color: #ccc; /* Lichte grijstint voor de link */
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

a:hover {
    background-color: #444; /* Donkergrijze achtergrond bij hover */
    color: #fff; /* Witte tekstkleur bij hover */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Sterkere schaduw bij hover */
    transform: translateY(-2px); /* Lichte verplaatsing naar boven bij hover */
}

.maintenance-container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Donkerdere achtergrond voor contrast */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff; /* Witte tekstkleur voor kop */
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd; /* Lichtgrijze tekstkleur */
}

.loader {
    border: 8px solid rgba(255, 255, 255, 0.2); /* Semi-transparante rand */
    border-top: 8px solid #fff; /* Witte bovenrand voor het laadcirkeltje */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
