/* Algemene instellingen */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Lichtgrijs achtergrond */
    color: #333; /* Donkergrijs voor tekst */
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Knoppen */
.button, .button.cancel-button, .button:hover {
    background-color: #00a7e1; /* Cloudwise blauw */
    color: #fff;
    width: 150px;
    border: none;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s ease;

}

.button:hover {
    background-color: #007bb2; /* Donkerder blauw bij hover */
}

.cancel-button {
    display: inline-block;
    background-color: #003366; /* Cloudwise blauw */
    color: white;
    padding: 10px 15px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.cancel-button:hover {
    background-color: #002244; /* Donkerder blauw bij hover */
}
/* Formulieren */
.simple-form-container {
    margin-bottom: 20px;
}

.simple-form-container h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.simple-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.simple-form-container input[type="text"],
.simple-form-container input[type="file"],
.simple-form-container input[type="submit"],
.simple-form-container select {
    width: 100%;
    padding: 10px;
    margin: 8px 0 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.simple-form-container input[type="text"]:focus,
.simple-form-container select:focus {
    border-color: #00a7e1; /* Cloudwise blauw focus border */
    outline: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-buttons input[type="submit"] {
    background-color: #00a7e1; /* Cloudwise blauw */
    color: white;
    border-radius: 5px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width:150px;
}

.form-buttons input[type="submit"]:hover {
    background-color: #007bb2; /* Donkerder blauw bij hover */
}

/* Lijstweergave */
.simple-form-container ul {
    list-style-type: none;
    padding: 0;
    max-width:1200px;
}

.simple-form-container ul li {
    background-color: #fff; /* Witte achtergrond voor lijstitems */
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.simple-form-container ul li a {
    background-color: #00a7e1; /* Cloudwise blauw voor de link */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.simple-form-container ul li a:hover {
    background-color: #007bb2; /* Donkerder blauw bij hover */
}

/* Zoekformulier */
form {
    background-color: #fff; /* Witte achtergrond voor zoekformulier */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form input[type="text"] {
    width: 75%;
    margin-right: 10px;
}

form input[type="submit"] {
    background-color: #00a7e1; /* Cloudwise blauw */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #007bb2; /* Donkerder blauw bij hover */
}

form label {
    font-size: 16px;
    color: #333;
}

form input[type="text"]:focus {
    border-color: #00a7e1; /* Cloudwise blauw focus border */
    outline: none;
}

/* Foutmeldingen */
p[style*="color: red"] {
    color: #f44336;
    font-weight: bold;
}

header,footer{display:none;}
h1{display:none;}

/* Basisstyling voor de hamburgermenu-container */
.hamburger-menu-container {
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.hamburger-menu-button {
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

/* Standaard verborgen menu-items */
.hamburger-menu-items {
    display: none;  /* Begin met verbergen */
    position: absolute;
    top: 40px;  /* Zet de knoppen net onder het menu */
    left: 0;
    border-radius: 5px;
    z-index: 100;
    flex-direction: column;
}

.buttons-wrapper{
    display:flex;
    flex-direction: column;
    gap:15px;
}

/* Toont het hamburgermenu als de knop is geklikt */
.hamburger-menu-container.open .hamburger-menu-items {
    display: flex;
}
