* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: #f3f4f6;
    color: #1f2933;
    font-family: Arial, sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgb(25 118 210 / 25%);
    outline-offset: 2px;
}

/* Mobiele basis */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 0;
    overflow-x: hidden;
}

button,
a,
input,
select,
textarea {
    touch-action: manipulation;
}

@media (max-width: 600px) {
    input,
    select,
    textarea {
        font-size: 16px; /* voorkomt automatisch inzoomen op iPhone */
    }

    button,
    .primaire-knop,
    .secundaire-knop,
    .neutrale-knop,
    .gevaar-knop {
        min-height: 44px;
    }
}
