body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding: 40px;
    font-size: 14px;
}

@media only screen and (max-width: 800px){
    body{
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px){
    body{
        font-size: 18px;
    }
}

.opdracht {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    margin-bottom: 10px;
}

.nav-bar {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    margin-bottom: 10px;
}

@media only screen and (max-width:800px) {
    body{
        padding: 20px;
    }
}

.title_container {
    display: flex;
    justify-content: space-between;
}

.arrow {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    margin-left: auto;
    transform: rotate(-90deg);
    cursor:pointer;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.status_0 {
}

.status_1 {
    background-color: #649CFE;
}

.status_2 {
    background-color: #FEAB4C;
}

.status_3 {
    background-color: #44BC4C;
}

.status_4 {
    background-color: #FE6464;
}

.omschrijving {
    width: 100%;
    max-height: 0; /* makes the element invisible due to no height */
    overflow: hidden; /* hides the visual overflow when the elements height is smaller then the contents height */
    transition: max-height 0.5s ease-out; /* smooth-transition between both "states" */
}

.omschrijving.visible {
  max-height: 1000vh; /* insanely high value */
  transition: max-height 0.75s ease-in; /* smooth-transition between both "states" */}


.opdracht-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    margin-bottom: 10px;
}

/* Titelstijl */
.opdracht-container h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Status tekst */
.opdracht-container .title {
    font-weight: bold;
    font-size: 16px;
    color: #555;
}

/* Formulierstijl */
.form label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-top: 10px;
}
.form select, .form input[type="text"], .form input[type="submit"], .form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Status select en submit-knop */
.form select {
    background-color: #f8f9fa;
}
.form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Annuleren knop */
.form button {
    background-color: #ddd;
    color: #333;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form button:hover {
    background-color: #bbb;
}

/* Verborgen veld voor toewijzen aan */
#toewijzen {
    margin-top: 10px;
}
