/* Reset basic styles */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/background.png');
    background-size: cover;

}

/* Ensure glass-container is set to 800px height */
.glass-container {
    width: 90%;   /* Percentage width to be responsive */
    max-width: 350px;  /* Max width ensures it doesn't become too large */
    height: 70vh;
    max-height: 400px; 
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: hidden;  /* Disable horizontal scrolling */
}

.glass-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 120%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

/* .glass-container-1 remains unchanged for now */
.glass-container-1 {
    width: 90%;   /* Percentage width to be responsive */
    max-width: 350px;  /* Max width ensures it doesn't become too large */
    height: 60vh;
    max-height: 350px; 
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: hidden;  /* Disable horizontal scrolling */
}

.glass-container-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

/* Ensure glass-container is set to 800px height */
.glass-container-2 {
    width: 90%;   /* Percentage width to be responsive */
    max-width: 600px;  /* Max width ensures it doesn't become too large */
    height: 80vh;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #ffffff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: hidden;  /* Disable horizontal scrolling */
}

.glass-container-2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 150%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.glass-container-menu {
    width: 40%;   /* Percentage width to be responsive */
    max-width: 200px;  /* Max width ensures it doesn't become too large */
    height: 45vh;
    position: fixed;   /* Fix it to the left side */
    margin-left: 20px;  /* Offset from the left of the screen */
    top: 5vh;         /* Offset from the top of the screen */
    left: 0;         /* Align to the left */
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: hidden;  /* Disable horizontal scrolling */
}

.glass-container-menu::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 150%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.glass-container-main {
    width: 100vh;   /* Percentage width to be responsive */
    max-width: 1600px;  /* Max width ensures it doesn't become too large */
    height: 90vh;
    position: fixed;   /* Fix it to the left side */
    margin-left: 250px;  /* Offset from the left of the screen */
    top: 5vh;         /* Offset from the top of the screen */
    left: 0;         /* Align to the left */
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: auto;  /* Disable horizontal scrolling */
}

.glass-container-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.glass-container-bio {
    width: 100vh;   /* Percentage width to be responsive */
    max-width: 1600px;  /* Max width ensures it doesn't become too large */
    height: 90vh;
    position: fixed;   /* Fix it to the left side */
    margin-left: 250px;  /* Offset from the left of the screen */
    top: 5vh;         /* Offset from the top of the screen */
    left: 0;         /* Align to the left */
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: auto;  /* Disable horizontal scrolling */
}

.glass-container-bio::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 400%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.glass-container-agenda {
    width: 100vh;   /* Percentage width to be responsive */
    max-width: 1600px;  /* Max width ensures it doesn't become too large */
    height: 90vh;
    position: fixed;   /* Fix it to the left side */
    margin-left: 250px;  /* Offset from the left of the screen */
    top: 5vh;         /* Offset from the top of the screen */
    left: 0;         /* Align to the left */
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    overflow-y: auto;  /* Enable vertical scrolling */
    overflow-x: auto;  /* Disable horizontal scrolling */
}

.glass-container-agenda::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 150%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.login-box {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    
}

.login-box-menu {
    max-width: 100px;
    margin: 0 auto;
    
    
}

.login-box-1 {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    
}

.login-box-2 {
    max-width: 250px;
    margin: 0 auto;
    text-align: left;
    
}

h1  {

    color: #fff;
    font-size: 56px;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    margin-top: 40px;

}



h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: -20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);

}

h3 {
    color: #000000;
    margin-top: 10px;
    margin-bottom: -10px;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
}

h4 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: -20px;
    margin-left: 20px;
    font-size: 20px;
    text-align: left;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);

}

h5 {
    color: #000000;
    margin-top: 20px;
    margin-bottom: -10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
    text-align: left;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
}

h6 {
    color: #000000;
    margin-top: 10px;
    margin-bottom: -10px;
    margin-left: 20px;
    font-size: 18px;
    text-align: left;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
}

label {
    font-size: 12px;
    color: #ffffff;

}

form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;

}

a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 0px;
    text-align: center;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

input {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}

input::placeholder {
    color: #fff;
}

input:focus {
    outline: none;
}

.options {
    display: flex;
    margin-top: 15px;
    font-size: 12px;
    color: white;
    
}

.options input {
    margin-right: 5px;
    margin-top: 0px;
}

.options a {
    text-decoration: none;
    color: white;
    margin-left: auto;
}

.options label {
    margin-left: 5px;
}

button {
    background: #fff;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background: transparent;
    color: white;
    outline: 1px solid #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.0);

}

p {
    font-size: 12px;
    color: #fff;
    margin-top: 15px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);

}

.para_3 {
    font-size: 12px;
    color: #000000;
    margin-top: 15px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);

}

iframe {
    margin-top: 40px;
    margin-left: 80px;

}


#register {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

 /* Content to demonstrate scrolling */
.content {
    height: 100%;  /* Allow the content to fill the box */
    overflow-y: auto;
    overflow-x: auto;
}

.welcome-message {
    color: #000000;
    margin-top: 30px;
    margin-bottom: -20px;
    margin-left: 30px;
    font-size: 24px;
    text-align: left;

}

.menu {
    color: #000000;
    text-align: left;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin-left: 30px;
    font-size: medium;
}

.menu li {
    color: #000000; /* Make the text color black */
}

.menu li a {
    color: #000000; /* Make the link text black as well */
    text-decoration: none; /* Optional: Removes the underline */
    font-size : 16px;
    &:hover {
        color: #ffffff;
    }
}

.kaders   {
    margin-top: 10px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
   
}

hr {

    color:rgba(255, 255, 255, 0);
    margin-top: 20px;
    margin-left: 60px;
    margin-right: 60px;

}

.ondertitel_bio {

    text-align: center;

}

.tekst_bio  {

    margin-top: 10px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}

.naam_bio {

    margin-left: 60px;
    

}

.motto {

    margin-top: 20px;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}

.start_bio

{

    margin-top: 20px;
    margin-left: 20%;
    margin-right: 20%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}

.tekst_start {

    margin-top: 10px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}   

.img_boom {

    scale: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.lijst_afspraken {

    margin-top: 20px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #f4f4f4b8;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

}


.start{

    margin-left: 250px;
    margin-right: 250px;
}