/* Stijl voor de alinea met witte tekst */
p {
    color: #000000; /* Tekstkleur ingesteld op rood */
    font-family: "Arial", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    text-align: center;
    padding: 20px;
    background-image: url('/afbeeldingen/hardbaseworking/achtergrondnieuw.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* CSS voor de titel */
.page-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #000000;
}

h1 {
    color: rgb(255, 0, 0);
}

/* Navigatie menu stijl */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(255, 0, 0);
    font-weight: bold;
}

nav ul li a:hover {
    color: blue;
}

/* Grid-container voor alerts */
.alerts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Vier kolommen */
    gap: 20px; /* Ruimte tussen de items */
}

.alert-item {
    background-color: rgba(255, 255, 255, 0.8); /* Witte achtergrond met transparantie */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
