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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Achtergrondkleur van de pagina */
    color: #333; /* Tekstkleur van de pagina */
}

/* Header en navigatie */
header {
  text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-logout {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d9534f; /* Rode kleur voor uitloggen */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s;
    cursor: pointer;
    align-self: center;
    margin-top: 0; 
}

.btn-logout:hover {
    background-color: #c9302c; /* Donkere rode tint bij hover */
}


/* Stijl voor de vlaggen in de taalkeuzelijst */
.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

.flag {
    width: 20px;
    height: auto;
    margin-left: 8px;
}

.custom-select {
    display: none; /* Verberg de standaard select */
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    width: 100%;
}

.custom-options div {
    padding: 10px;
    cursor: pointer;
}

.custom-options div:hover {
    background-color: #f0f0f0;
}

/* Login container stijl */
.login-container {
    max-width: 860px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Invoer- en labelgroepen */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #fb9504;
}

/* Knop voor verzenden */
.button-container {
    display: flex;
    flex-direction: column; 
    gap: 10px;
    max-width: 400px;
    margin: 0 auto; 
}

button {
    width: 100%; 
    padding: 10px;
    background-color: #fb9504;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #945803;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%; /* Zorgt ervoor dat de container de volledige breedte van zijn container benut */
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ToernooiDatumHeader {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5em; 
    text-align: center;
    width: calc(100% - 40px); 
    padding: 0 20px;
    box-sizing: border-box; 
}



@media (max-width: 600px) {
    .ToernooiDatumHeader {
        font-size: 1em;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .ToernooiDatumHeader {
        font-size: 1.8em; 
        padding: 4px; 
    }
}

@media (max-width: 600px) and (orientation: landscape) {
    .ToernooiDatumHeader {
        font-size: 1.2em; 
        padding: 2px;
    }
}

.jbnContent{
    text-align: left !important;
    font-size: 1.25rem;
}

.jbnContent h4{
    margin-top: 2vh;
}

.jbnContent img{
    
  width: 100%;
  margin: 0 auto;
 
}