html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.6); 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--grey);
    color: var(--white);
    line-height: 1.6;
    text-align: left;
}

main {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto; 
}

:root {
    --light-blue: #add8e6;
    --grey: #2f2f2f;
    --soft-grey: #444;
    --yellow: #ffd700;
    --white: #ffffff;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
}

/* Media en afbeeldingen */
img, video {
    max-width: 100%;
    height: auto;
}

header {
    background-color: var(--soft-grey);
    padding: 1px;
    border-bottom: 3px solid var(--light-blue);
}

/* Topbar en navigatie */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-button {
    color: var(--grey);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: var(--yellow);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--yellow);
    display: inline-block;
}

.logo-button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.auth-buttons p {
    margin-right: 10px;
}

.admin-btn {
    background-color: var(--yellow);
    color: var(--grey);
}

nav {
    margin-top: 10px;
}

.nav-tabs {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-top: 2px solid var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
    flex-wrap: wrap;
}

.nav-tabs li a {
    color: var(--light-blue);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.nav-tabs li a:hover {
    background-color: var(--yellow);
    color: var(--grey);
    transform: scale(1.05);
}

main h2 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Games container */
.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Flexibel aantal kolommen */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: var(--soft-grey);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.game-card h3 {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.game-card p {
    color: var(--light-blue);
    font-size: 1rem;
    margin-bottom: 10px;
}

.game-card .btn {
    background-color: var(--yellow);
    color: var(--grey);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.game-card .btn:hover {
    background-color: var(--light-blue);
    color: var(--grey);
    transform: scale(1.05);
}

/* Zoekbalk aanpassen */
.search-bar {
    display: flex;
    align-items: center; /* Zorg ervoor dat de items verticaal uitgelijnd zijn */
    gap: 10px; /* Ruimte tussen de zoekbalk en knop */
    margin-bottom: 20px;
}

.search-bar input {
    padding: 10px;
    width: 250px; /* Je kunt deze waarde aanpassen naar wens */
    border-radius: 12px;
    border: 2px solid var(--light-blue);
    font-size: 14px;
}

.search-bar button {
    background-color: var(--yellow);
    color: var(--grey);
    font-weight: bold;
    border: 2px solid var(--yellow);
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-bar button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
    transform: scale(1.05);
}

/* Back-link */
.back-link {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--soft-grey);
    padding: 15px;
    text-align: center;
    color: var(--light-blue);
    border-top: 3px solid var(--light-blue);
}

footer p {
    font-size: 14px;
    color: var(--light-blue);
}

/* Responsiveness */
@media (max-width: 768px) {
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Meer kolommen op kleinere schermen */
    }

    .game-card {
        width: 100%;
    }

    .logo-button {
        font-size: 1.8rem;
    }

    main {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .game-card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .game-card h3 {
        font-size: 1rem;
    }

    .game-card p {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.8rem;
    }
}

/* Input velden en knoppen */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 14px;
    transition: border 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #66ccff;
    outline: none;
}

.btn {
    background-color: var(--yellow);
    color: var(--grey);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--yellow);
    outline: none;
    box-shadow: none;
}

.btn:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
    transform: scale(1.05);
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.6); 
}

/* === Admin Dashboard Styling === */
.admin-container {
    text-align: center;
    padding-top: 40px;
}

.admin-container h1 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.admin-container p {
    color: var(--light-blue);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.admin-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.admin-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--yellow);
    color: var(--grey);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--yellow);
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.admin-button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
    transform: scale(1.05);
}

.console-card {
    background-color: var(--soft-grey);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
}

.console-card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.console-card h3 {
    color: var(--yellow);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.console-card p {
    color: var(--light-blue);
    margin: 5px 0;
}

.console-card form {
    margin-top: 10px;
}

.console-card input[type="number"] {
    width: 60px;
    padding: 6px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-blue);
    margin-right: 5px;
}

.console-card button {
    background-color: var(--yellow);
    color: var(--grey);
    border: 2px solid var(--yellow);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: 0.3s ease;
}

.console-card button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
}

/* === Admin Dashboard Styling === */
.games-dashboard {
    padding-bottom: 60px;
}

.games-dashboard h1 {
    text-align: center;
    color: #ffd700;
    margin-top: 30px;
}

.games-dashboard .center-btn-wrapper {
    text-align: center;
}

.games-dashboard a.button {
    display: inline-block;
    background-color: #add8e6;
    padding: 8px 16px;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-bottom: 20px;
}

.games-dashboard a.button:hover {
    background-color: #ffd700;
}

.games-dashboard .form-container {
    max-width: 600px;
    margin: 30px auto;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
}

.games-dashboard .form-container input,
.games-dashboard .form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: none;
}

.games-dashboard .form-container button {
    background-color: #add8e6;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    color: black;
}

.games-dashboard .form-container button:hover {
    background-color: #ffd700;
}

.games-dashboard .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.games-dashboard .game-card {
    background-color: #1e1e1e;
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.games-dashboard .game-card img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.games-dashboard .game-card h3 {
    color: #ffd700;
    margin: 10px 0;
}

.games-dashboard .game-card a {
    color: #add8e6;
    text-decoration: none;
    font-weight: bold;
}

.games-dashboard .game-card a:hover {
    color: #fff;
}

.games-dashboard .game-card form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.games-dashboard .game-card input[type="number"] {
    width: 80px;
    padding: 6px;
    text-align: center;
    border-radius: 5px;
    border: none;
}

.games-dashboard .game-card button,
.games-dashboard .game-card .delete-btn {
    background-color: #add8e6;
    color: black;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.games-dashboard .game-card button:hover,
.games-dashboard .game-card .delete-btn:hover {
    background-color: #ffd700;
}

.games-dashboard .game-card .delete-btn {
    text-decoration: none;
    display: inline-block;
}

@media screen and (max-width: 800px) {
    .games-dashboard .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .games-dashboard .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Algemene Styling voor de Nieuws Pagina */
.games-dashboard {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.games-dashboard h1 {
    text-align: center;
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 30px;
}

.games-dashboard .back-button {
    display: inline-block;
    background-color: #add8e6;
    padding: 10px 20px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.games-dashboard .back-button:hover {
    background-color: #FFD700;
}

/* Formulier Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-size: 18px;
    color: #FFD700;
}

form input, form textarea, form button {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    outline: none;
}

form input, form textarea {
    background-color: #333;
    color: white;
}

form button {
    background-color: #add8e6;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #FFD700;
}

/* Status Box Styling */
.status-box {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Bestaande Nieuwsberichten Styling */
hr {
    margin-top: 40px;
    border: 1px solid #444;
}

h2 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.news-item {
    background-color: #333;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.news-item h3 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 15px;
}

.news-item p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.news-actions {
    text-align: center;
}

.news-actions a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    background-color: #FFD700;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-actions a:hover {
    background-color: #000;
    color: #FFD700;
}

.news-actions .edit-button {
    background-color: #4CAF50;
}

.news-actions .edit-button:hover {
    background-color: #388E3C;
}

.news-actions .delete-button {
    background-color: #F44336;
}

.news-actions .delete-button:hover {
    background-color: #D32F2F;
}

/* Basis instellingen */
:root {
    --light-blue: #add8e6;
    --grey: #2f2f2f;
    --soft-grey: #444;
    --yellow: #ffd700;
    --white: #ffffff;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Algemene stijlen */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--grey);
    color: var(--white);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

h1 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

a.back-button {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 1.2rem;
    text-decoration: none;
    background-color: var(--soft-grey);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 2px solid var(--yellow);
    transition: background-color 0.3s ease, color 0.3s ease;
}

a.back-button:hover {
    background-color: var(--yellow);
    color: var(--grey);
}

.dashboard-container {
    background-color: var(--soft-grey);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-box {
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
}

.status-box.error {
    background-color: #dc3545;
}

form.news-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form.news-form label {
    font-size: 1.1rem;
    color: var(--yellow);
}

form.news-form input,
form.news-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    background-color: var(--grey);
    color: var(--white);
    width: 100%;
    transition: border-color 0.3s ease;
}

form.news-form input:focus,
form.news-form textarea:focus {
    border-color: var(--yellow);
    outline: none;
}

.submit-btn {
    background-color: var(--yellow);
    color: var(--grey);
    padding: 12px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--light-blue);
    color: var(--grey);
    transform: scale(1.05);
}

footer {
    background-color: var(--soft-grey);
    padding: 20px;
    text-align: center;
    color: var(--light-blue);
    border-top: 3px solid var(--light-blue);
}

footer p {
    font-size: 14px;
}

/* Contact Dashboard Styling */
.dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--soft-grey);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dashboard h2 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 30px;
}

.bericht {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-left: 5px solid var(--yellow);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bericht:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bericht.voltooid {
    border-left-color: #28a745;
    opacity: 0.6;
}

.bericht p {
    color: var(--grey);
    font-size: 1.1rem;
}

.bericht form {
    display: flex;
    gap: 1em;
    margin-top: 15px;
}

.bericht form button {
    padding: 12px 20px;
    font-size: 1rem;
    background-color: var(--yellow);
    color: var(--grey);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bericht form button:hover {
    background-color: var(--light-blue);
    color: var(--grey);
    transform: scale(1.05);
}

/* Alert Messages */
.alert-message {
    background-color: #28a745;
    color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.alert-message.error {
    background-color: #dc3545;
}

.alert-message.success {
    background-color: #28a745;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dashboard {
        padding: 20px;
    }

    .bericht {
        padding: 15px;
    }

    .bericht form {
        flex-direction: column;
        gap: 10px;
    }

    .bericht form button {
        width: 100%;
    }
}

/* Contact Pagina Styling */
main {
    padding: 40px;
    
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

h2 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    color: var(--light-grey);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background-color: var(--grey); /* Donkere grijze achtergrond */
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    background-color: var(--soft-grey); /* Lichte grijze achtergrond voor invoervelden */
    color: var(--white);
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--yellow);
    outline: none;
}

.contact-form button {
    background-color: var(--yellow);
    color: var(--grey);
    padding: 14px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: var(--light-blue);
    color: var(--grey);
    transform: scale(1.05);
}

.message {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #28a745; /* Groen voor succesberichten */
    text-align: center;
}

section {
    margin-top: 50px;
    color: var(--grey);
    padding: 0 20px;
}

h3 {
    color: var(--yellow);
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
}

a.btn {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--grey);
    padding: 14px 25px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a.btn:hover {
    background-color: var(--light-blue);
    color: var(--grey);
    transform: scale(1.05);
}

.bericht-card {
    background-color: var(--grey); /* Donkere grijze achtergrond voor de berichten */
    padding: 20px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bericht-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bericht-card p {
    color: var(--light-grey);
    line-height: 1.6;
}

.bericht-card strong {
    color: var(--yellow);
}

footer {
    background-color: var(--soft-grey);
    padding: 15px;
    text-align: center;
    color: var(--light-blue);
    border-top: 2px solid var(--light-blue);
}

footer p {
    font-size: 14px;
}

/* Laatste berichten wit maken */
.bericht-card {
    background-color: var(--white); /* Witte achtergrond voor de laatste berichten */
    color: var(--grey); /* Donkergrijze tekstkleur voor de berichten */
    padding: 20px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--yellow); /* Gele rand aan de linkerkant */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bericht-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bericht-card p {
    color: var(--grey); /* Donkergrijze tekst voor de berichten */
    line-height: 1.6;
}

.bericht-card strong {
    color: var(--yellow); /* Gele kleur voor de naam */
}

/* Contact pagina - algemene tekst */
section {
    margin-top: 50px;
    color: var(--grey);
    padding: 0 20px;
}

h3 {
    color: var(--yellow);
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.logo-image {
    height: 60px; /* of wat je maar mooi vindt */
    width: auto;
    display: block;
}

.logo-button {
    background: none;
    border: none;
    padding: 0;
    display: inline-block;
}

.logo-image {
    height: 200px; /* of pas aan naar smaak */
    width: auto;
    display: block;
}

.logo-button img {
    display: block;
    border: none;
    background: none;
}

/* Game detail pagina aanpassingen */
.game-detail {
    color: var(--white);
}

.game-detail h2,
.game-detail p,
.game-detail strong {
    color: var(--white);
}

/* Game Bewerken pagina styling */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.form-container h2 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-container input,
.form-container textarea,
.form-container button {
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border 0.2s ease;
}

.form-container input[type="file"] {
    padding: 6px;
}

.form-container textarea {
    min-height: 100px;
    resize: vertical;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: var(--light-blue);
    outline: none;
}

.form-container button {
    background-color: var(--yellow);
    color: var(--grey);
    border: 2px solid var(--yellow);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.form-container button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }
}

/* Console Bewerken pagina styling */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.form-container h2 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-container input,
.form-container textarea,
.form-container button {
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border 0.2s ease;
}

.form-container input[type="file"] {
    padding: 6px;
}

.form-container textarea {
    min-height: 100px;
    resize: vertical;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: var(--light-blue);
    outline: none;
}

.form-container button {
    background-color: var(--yellow);
    color: var(--grey);
    border: 2px solid var(--yellow);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.form-container button:hover {
    background-color: var(--grey);
    color: var(--yellow);
    border-color: var(--grey);
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }
}

/* Reserveringen Overzicht pagina styling */
body {
    background-color: #1e1e1e;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

h2 {
    text-align: center;
    margin-top: 30px;
}

.top-btn {
    display: block;
    margin: 20px auto;
    background-color: #FFD700;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.top-btn:hover {
    background-color: #ffcc00;
}

/* Reservering tabel */
.reservering-table {
    width: 90%;
    margin: 0 auto 50px auto;
    border-collapse: collapse;
    background-color: #2f2f2f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reservering-table th,
.reservering-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
    vertical-align: top;
}

.reservering-table th {
    background-color: #FFD700;
    color: black;
}

.reservering-table tr:nth-child(even) {
    background-color: #3a3a3a;
}

.reservering-table tr:hover {
    background-color: #444;
}

/* Actie knoppen voor de reservering */
.action-buttons {
    display: flex;
    gap: 10px;
}

.action-buttons a {
    padding: 6px 12px;
    background-color: #FFD700;
    color: black;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.action-buttons a:hover {
    background-color: #000;
    color: #FFD700;
}

/* Extra stijl voor 'geen producten' tekst */
em {
    color: #ccc;
}

/* Responsiveness voor kleinere schermen */
@media (max-width: 768px) {
    .reservering-table {
        width: 100%;
        margin: 0 auto;
    }

    .top-btn {
        padding: 6px 12px;
    }

    .reservering-table th, .reservering-table td {
        padding: 10px;
    }
}

/* === NIEUWSBRIEF DASHBOARD STYLING (Dark Mode) === */
body.nieuwsbrief-dashboard {
    background-color: #121212;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    padding: 20px;
}

.nieuwsbrief-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.nieuwsbrief-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.nieuwsbrief-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #ffffff;
}

.nieuwsbrief-form input[type="text"],
.nieuwsbrief-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background-color: #2b2b2b;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.nieuwsbrief-form input[type="text"]:focus,
.nieuwsbrief-form textarea:focus {
    border-color: #3498db;
    outline: none;
}

.nieuwsbrief-form button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nieuwsbrief-form button:hover {
    background-color: #2980b9;
}

.status-box {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #2e7d32;
    border: 1px solid #1b5e20;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 500;
}

.back-button {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.back-button:hover {
    text-decoration: underline;
}