:root {
    --default-font: "Parkinsans", sans-serif, "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Parkinsans", sans-serif;
    --nav-font: "Parkinsans", sans-serif;
    font-family: 'Parkinsans', sans-serif;
    text-transform: lowercase;
}

/* Container uses flex to keep inputs on one row and add spacing */
#pincode-container {
    display: flex;
    justify-content: center;
    gap: 10px;

    /* Space between inputs */
    margin-top: 20px;

    /* Optional top margin */
}

/* Style each input field */
.pincode-input {
    width: 60px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pincode-input2 {
    width: 300px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

/* Change border and add a shadow on focus */
.pincode-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

a {
    text-decoration: none!important;
}

body {
    background-color: #faf4e4 !important;
}

.modal-content {
    background-color: #faf4e4 !important;
}

.btn {
    margin-left: 10px;
    margin-right: 10px;
}

#errorMessage {
    color: red;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.logo-container {
    text-align: center;
    margin: 30px 0;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

.shop-details {
    text-align: center;
    margin-bottom: 30px;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 30px;
    white-space: nowrap;
    position: relative;
    opacity: 50%;
    z-index: 2;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 50px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(248 249 250));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(248 249 250));
}

.logo_items {
    display: inline-block;
    animation: 100s slides infinite linear;
}

.logo_items img {
    height: 25px;
}

.container {
    /* margin-top: 50px */
}

#menu {
    padding: 40px;
    position: fixed;
    left: -350px;
    top: 0;
    bottom: 0;
    width: 350px;
    transition: left 0.3s;
    z-index: 1;
}

#menu h2 {
    margin-bottom: 40px;
}

#logout {
    position: absolute;
    bottom: 60px;
    left: 200px;
}

#menu.open {
    left: 0;
}

#menu ul {
    list-style: none;
    padding: 0;
}

#menu ul li {
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}

.menupos {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

.logopos {
    margin-top: -60px;
    background-color: rgba(255, 255, 255, 0.87);
}

.line4 {
    border-color: #000000;
    border-width: 2px;
    width: 60vw;
    margin-top: -5px;
    transform: rotate(-1deg);
}

.line3 {
    border-color: #000;
    border-width: 2px;
    width: 60vw;
    margin-top: -5px;
    transform: rotate(1deg);
}

a.leadlink {
    color: #000!important;
    text-decoration: none;
}

#menu a {
    color: #a3a0a0;
    font-size: 1em;
    text-decoration: none;
    padding: 10px;
}

#menu.menu-links {
    color: #a3a0a0;
}

a#logout {
    position: absolute;
    bottom: 60px;
}

.saldoplek {
    width: 120px;
    height: 80px;
    position: fixed;
    top: 5px;
    left: 5px;
    z-index: 999;
    border-radius: 25px;
}

.saldoplek .btn {
    position: fixed;
    top: 60px;
}

.klantmenu .btn {
    font-size: 15px;
    border-radius: 25px;
}

img#menuToggle {
    margin-bottom: 30px;
    margin-left: 20px;
}

input[type="file"] {
    margin: 5px;
}

/* Overlay full-screen */
#overlay {
    display: none;

    /* standaard verborgen */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-family: sans-serif;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid rgba(255,255,255,0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form styling */
form {
    margin: 100px auto;
    width: 300px;
    display: flex;
    flex-direction: column;
}

input,
button {
    padding: 8px;
    margin-top: 10px;
    font-size: 1rem;
}
