html, body {
    zoom: 1;
    transform: none;
}
body {
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #f0f0f0;
    font-family: "Questa Sans", sans-serif;
}

.mobile-frame { /* Visuele presentering als een mobiel frame op web */
    position: relative;
    width: 428px;
    height: 926px !important;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.content { /* samen met .mobile-frame maakt dit de content ruimte op. */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 1500px;
    background: transparent linear-gradient(155deg, #78FFFB 0%, #83FFF0 6%, #B8FFBD 37%, #DFFF97 65%, #F6FF80 86%, #FFFF78 100%) 100% 100% no-repeat padding-box;
    opacity: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* Generieke flexcontainers voor tekstuitlijning vanaf links of rechts */
.flexcontainer-left {
    display: flex;
    justify-content: flex-start; 
    align-items: center; 
    height: 100%;
}
.flexcontainer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

/* Tekstuele styling*/
a {
    text-decoration: none;
    color: inherit;
}

h1 {
    padding-top: 100px;
    text-align: center;
    font: normal normal normal 46px/54px Green Frog;
    letter-spacing: 0px;
    color: #FF8700;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.h1-slagzin {
margin-top: -20px;
padding-right: 20px;
transform: matrix(0.99, 0.1, -0.1, 0.99, 0, 0);
text-align: center;
font: italic normal 900 16px/20px Questa Sans;
letter-spacing: 0px;
color: #000000;
text-shadow: 5px 5px 10px #00000029;
opacity: 1;
justify-content: flex-end;
display: flex;
}

.subtitel-1{
text-align: center;
font: italic normal 900 16px/20px Questa Sans;
letter-spacing: 0px;
color: #000000;
opacity: 1;
}

.titel {
    font: normal normal 900 22px Questa Sans;
    color: #000000;
}
.beschrijving {
    font: normal normal 400 16px/20px Questa Sans;
    color: #000000;
}
.taak-tekst {
    font: normal normal 400 16px/20px Questa Sans;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.taak-tekst-flexbox {
    flex: 1;
}
.taak-tekst .edit,
.taak-tekst .delete {
    width: 48%;
}

.button-tekst {
    text-align: center;
    font: normal normal 900 16px/20px Questa Sans;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    }
/* Homepage afbeeldingen*/
.ollie-zwaaiend {
    bottom: 20px;
    right: 40px;
    width: 334px;
    height: 335px;
    transform: matrix(1, -0.07, 0.07, 1, 0, 0);
    background: transparent url('images/ollie-zwaaiend.svg') 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    z-index: 2;
}
.ollie-steen {
    bottom: -200px;
    right: -50px;
    width: 390px;
    height: 356px;
    background: transparent url('images/steen.svg') 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    z-index: 1;
}
.ollie-zittend {
    height: 335px;
    background: transparent url('images/ollie-zittend.png') 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    z-index: 1;
    background-size: contain;
    width: 50%;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}


/* Oranje buttons */
.textbox-wit {
    width: 250px;
    height: 60px;
    background-color: white;
    border-radius: 20px 20px 0 20px;
    transform: translate(-50%, -50%);
    position: relative;
    top: 15%;
    left: 50%;
}
.textbox-wit::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 0px;
    width: 0;
    height: 0;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}
.button-oranje {
top: 80px;
left: 84px;
width: 260px;
height: 43px;
background: #FF8700 0% 0% no-repeat padding-box;
border-radius: 20px;
opacity: 1;
position: relative;
margin-bottom: 20px;
}
.button-oranje:hover {
    background: #FF6A00;
}

/* Login functie */
.button-registreren {
    top: 80px;
    left: 84px;
    width: 260px;
    height: 43px;
    background: #F9F9EC 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.invulgebied {
    width: 100%;
    height: 30px;
    border: none;
    background: transparent;
    outline: none;
    text-align: center;
    font-size: 16px;
    font: normal normal 900 16px/20px Questa Sans;
    color: #000000;
}
.invulgebied:focus::placeholder {
    visibility: hidden;
}

/* Taken pagina */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
ul {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
}

.taken-container {
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 398px;
    text-align: center;
    background: white;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}
.taak-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: none;
    text-align: center;
    background: #D0F0F1;
    font-size: 16px;
    font: normal normal 900 16px/20px Questa Sans;
    color: #000000;
    padding-inline-start: 0px;
    box-sizing: border-box;
}
.taak-form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: none;
    background: #FF8700;
    text-align: center;
    font: normal normal 900 16px Questa Sans;
    color: #fff;
    padding-top: 10px;  
    box-sizing: border-box;
}
.taak-form button:hover {
    background: #FF6A00;
}

.taak {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    background: White;
    padding: 10px;
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 398px;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    font: normal normal 900 16px/20px Questa Sans;
    gap: 10px;
}

.taak button {
    margin-top: 10px;
    margin-left: 5px;
    background: #FF8700;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.taak .titel {
    width: 50%;
}
.taak .puntwaarde {
    background: #FFCF35;
    color: #fff;
    padding: 10px 10px 10px 15px;
    border-radius: 25px;
    font: normal normal 900 22px Questa Sans;
    width: auto;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
.punt-icoon {
    display: inline-block;
    vertical-align: bottom;
    padding-left: 5px;
}
.taak .beschrijving {
    width: 60%;
    margin-top: 10px;
}
.taak .deadline {
    width: 40%;
    margin-top: 10px;
}
.taak .status {
    grid-column: span 2;
    background: #FF8700;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    width: 50%;
    margin-top: 10px;
}
.taak .edit {
    background: #54B6F7;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    width: 20%;
}
.taak .edit:hover {
    background: #2B76A8;
}
.taak .delete {
    background: #FF0080;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    width: 20%;
}
.taak .delete:hover {
    background: #BF0060;
}

/* Navigatie buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    display: flex;
    margin-top: auto;
}

.nav-button {
    display: inline-block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    width: 90px;
    height: 120px;
}

.nav-button img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.nav-button:hover img {
    transform: scale(1.1);
}

.bank {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 120px;
    height: 120px;
}
.bank-container {
    position: relative;
    display: inline-block;
}
.bank-container img {
    width: 100%;
    height: auto;
    display: block;
}
.bank-container p {
    position: absolute;
    top: 20%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: white; 
    text-align: center;
    pointer-events: none;
}
