/* Pagina container */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0;
    padding: 0;
    color: #06172B;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    min-height: 100%;
    overflow-x: hidden;
}

.logo {
    margin: 20px auto 12px auto;
    width: 200px;
    height: 200px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    position: relative;
    padding: 20px 16px 40px;
    box-sizing: border-box;
}
/* Input groep */
.input-group {
    display: flex;
    width: 100%; /* Gebruik volledige breedte op kleinere schermen */
    max-width: 600px; /* Limiteer maximale breedte op grotere schermen */
    border: 2px solid #06172B;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Inputveld */
.playlist-input {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: none;
    min-width: 0; /* Zorg dat het invoerveld niet uitrekt */
}

/* Knop */
.submit-button {
    background: #06172B;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.start-bingo, .start-info-muzino {
    width: 400px;
    box-sizing: border-box;
}
.submit-button:hover {
    background: #005f99;
}

/* Feedback sectie */
.feedback {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.feedback.error {
    color: #ffffff; /* Rood voor fouten */
}

.feedback.success {
    color: #5cb85c; /* Groen voor succes */
}

.spotify-help-hint {
    margin: 10px 0 0;
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.spotify-link-help {
    color: #005f99;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.spotify-link-help:hover,
.spotify-link-help:focus {
    color: #2EC4E7;
}

.info-links {
    margin: 6px 0 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #06172B;
    flex-wrap: wrap;
}

.info-links a {
    color: #005f99;
    font-weight: 600;
    text-decoration: none;
}

.info-links a:hover,
.info-links a:focus {
    text-decoration: underline;
    color: #2EC4E7;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 23, 43, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7000;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow: hidden;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.modal-content > :not(.close-modal) {
    overflow-y: auto;
    padding-right: 10px;
    max-height: calc(85vh - 96px);
}

.modal-content h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #06172B;
}

.modal-content h4 {
    margin-bottom: 6px;
    margin-top: 12px;
    font-size: 1rem;
    color: #06172B;
}

.modal-content p {
    margin: 0 0 6px;
    line-height: 1.35;
    padding: 0;
}

.modal-content ul,
.modal-content ol {
    margin: 0 0 6px;
    padding-left: 18px;
}

.modal-content ol {
    padding-left: 20px;
    color: #06172B;
    font-size: 0.95rem;
}

.modal-note {
    background: #f5faff;
    border-radius: 12px;
    border-left: 4px solid #2EC4E7;
    padding: 18px 22px !important;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    box-sizing: border-box;
}

.modal-note strong {
    display: inline-block;
}

.contact-details {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #5d6c7a;
    text-align: center;
}

.modal-content .contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(46, 196, 231, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(46, 196, 231, 0.2);
    box-shadow: 0 12px 26px rgba(6, 23, 43, 0.16);
}

.modal-content .contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 196, 231, 0.2), rgba(6, 23, 43, 0.05));
    color: #06172B;
    box-shadow: inset 0 0 12px rgba(46, 196, 231, 0.2);
    flex: 0 0 auto;
}

.modal-content .contact-icon svg {
    width: 28px;
    height: 28px;
}

.modal-content .contact-body h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
    color: #06172B;
}

.modal-content .contact-body p {
    margin: 0 0 8px;
    color: #1b2a3a;
}

.modal-content .contact-body a {
    color: #005f99;
    font-weight: 600;
    text-decoration: none;
}

.modal-content .contact-body a:hover,
.modal-content .contact-body a:focus {
    color: #2EC4E7;
    text-decoration: underline;
}

.modal-content .contact-card .contact-details {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(6, 23, 43, 0.65);
    text-align: left;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.modal-primary,
.modal-secondary {
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.modal-primary {
    background: #06172B;
    color: #ffffff;
}

.modal-secondary {
    background: #e6eef6;
    color: #06172B;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-left: 0;
    z-index: 2;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #06172B;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 14px rgba(6, 23, 43, 0.15);
}

.close-modal:hover,
.close-modal:focus {
    color: #2EC4E7;
}

.modal-template {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    background: rgba(6, 23, 43, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    padding: 20px;
}

.cookie-consent.cookie-consent--hidden {
    display: none;
}

.cookie-consent-card {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-consent-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #06172B;
}

.cookie-consent-card p {
    margin: 0;
    color: #1b2a3a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent-links {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.cookie-consent-link {
    color: #005f99;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-link--prefs {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
    align-self: flex-start;
}

.cookie-consent-preferences {
    display: none;
    border: 1px solid rgba(6, 23, 43, 0.12);
    border-radius: 12px;
    padding: 12px;
    background: #f7fafc;
    gap: 10px;
}

.cookie-consent-preferences.is-visible {
    display: flex;
    flex-direction: column;
}

.cookie-consent-option {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
    color: #06172B;
}

.cookie-consent-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #06172B;
}

.cookie-consent-message {
    min-height: 18px;
    color: #b00020;
    font-size: 0.9rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent-button {
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-consent-button--primary {
    background: #06172B;
    color: #ffffff;
}

.cookie-consent-button--secondary {
    background: #e6eef6;
    color: #06172B;
}

body.cookie-blocked {
    overflow: hidden;
}

.legal-footer {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #06172B;
    padding: 10px 16px 30px;
    box-sizing: border-box;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.legal-footer a {
    color: #06172B;
    font-weight: 500;
    text-decoration: none;
}

.legal-footer a:hover,
.legal-footer a:focus {
    color: #2EC4E7;
    text-decoration: underline;
}

/* Container voor kaartselectie */
#choose-card {
    text-align: center;
    padding: 20px;
    display: none;
}

#choose-card h1 {
    font-size: 2rem;
    color: #06172B;
    margin-bottom: 20px;
}

/* Rasterweergave van kaarten */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
    gap: 20px;
    justify-content: center;
    align-items: start;
}


/* Kaart container */
.card {
    background: rgb(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.card p {
    font-weight: 400;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.not-clickable {
    background: rgba(200, 200, 200, 0.5); /* Grijs en transparanter */
    cursor: not-allowed; /* Geeft aan dat het niet klikbaar is */
    pointer-events: none; /* Voorkomt klikken */
    box-shadow: none; /* Verwijdert de schaduw */
    transform: none; /* Voorkomt hover scaling */
    opacity: 0.4;
}
.reason {
    font-size: 14px;
    color: #ff0000; /* Rode tekst voor waarschuwing */
    margin-top: 10px;
}

.hidden {
    display: none;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 23, 43, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.loading-overlay.hidden {
    display: none;
}

.loading-card {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 320px;
}

.spinner {
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 6px solid rgba(6, 23, 43, 0.15);
    border-top-color: #06172B;
    animation: spin 1s linear infinite;
}

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


/* Bingo preview met grid-gap */
.bingo-preview {
    padding: 1px;
    box-sizing: border-box;
    display: grid;
    margin: 0 auto 10px;
    border: 2px solid #06172B;
    border-radius: 4px;
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    position: relative;
    gap: 1px; /* Voegt ruimte toe tussen de vakjes */
}

/* Specifieke rasterinstellingen */
.bingo-2x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.bingo-3x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.bingo-4x4 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
}

.bingo-5x5 {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
}

/* Vakjes binnen de bingo preview */
.bingo-preview div {
    background: #2EC4E7;
    margin: 0px;
    border-radius: 2px;
    height: 100%;
    width: 100%;
}

/* Speciaal logo vakje voor 5x5 */
.bingo-5x5 .logo {
    grid-column: 3;
    grid-row: 3;
    background: url('../img/logosmall.png') no-repeat center center;
    background-size: contain;
    border: 1px solid #fff;
    box-sizing: border-box;
}

/* Inactieve kaart */
.card.inactive {
    opacity: 0.5;
    pointer-events: none;
}

.card .reason {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.card .reason:not(.hidden) {
    display: block;
}

/* Adviesknoppen */
.advice-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.advice-option {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f06292;
    overflow: hidden; /* voorkomt dat de overlay buiten de knop komt */
}

/* Overlay toevoegen */
.advice-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 23, 43, 0.18);
    border-radius: 10px;
    z-index: 5;
}
.btn-text {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column; /* Stapel de tekst netjes onder elkaar */
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    height: 100%;
    text-shadow: 0 2px 8px rgba(6, 23, 43, 0.25);
}

/* Pas de marges en regelhoogte aan voor minder ruimte */
.btn-text strong {
    margin: 0;
    font-size: 18px; /* Optioneel: pas de grootte aan */
    line-height: 1.2;
}

.btn-text small {
    margin: 2px 0;
    font-size: 14px; /* Optioneel: kleiner maken */
    line-height: 1.2;
}

.btn-text span {
    margin: 2px 0;
    font-size: 12px;
    line-height: 1.2;
}


.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 85%;
    background-position: center; /* Zorgt ervoor dat de achtergrond gecentreerd wordt */
    background-repeat: no-repeat;
    box-sizing: border-box;
    opacity: 0.7;
}
.fast {    
    background-image: url('../img/snel.png');
}
.party {    
    background-image: url('../img/feest.png');
}
.marathon {    
    background-image: url('../img/marathon.png');
}

.advice-option small {
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
}

.advice-option:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.advice-header {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.advice-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.advice-header p {
    font-size: 16px;
    line-height: 1.5;
    margin: 5px 0;
}
.extra-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centreert de knoppen horizontaal */
    align-items: center; /* Centreert de knoppen verticaal */
    margin-top: 20px;
    text-align: center;
    max-width: 100%; /* Zorg dat de knoppen niet buiten de container vallen */
    padding: 10px;
}

.square-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1aa9d1, #2EC4E7);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-shadow: 0 2px 8px rgba(6, 23, 43, 0.35);
}

.square-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

#manual-select {
    background: linear-gradient(135deg, #1f88b3, #2EC4E7);
}

#manual-select::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='10' y1='18' x2='54' y2='18'/%3E%3Ccircle cx='24' cy='18' r='6'/%3E%3Cline x1='10' y1='32' x2='54' y2='32'/%3E%3Ccircle cx='40' cy='32' r='6'/%3E%3Cline x1='10' y1='46' x2='54' y2='46'/%3E%3Ccircle cx='28' cy='46' r='6'/%3E%3C/svg%3E");
}

#keep-all {
    background: linear-gradient(135deg, #1f9d6a, #49d5a2);
}

#keep-all::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='12' width='36' height='26' rx='4'/%3E%3Crect x='18' y='22' width='36' height='26' rx='4'/%3E%3Cpath d='M26 35l6 6 12-12'/%3E%3C/svg%3E");
}

.square-button:hover {
    background: #005f99;
    transform: scale(1.05); /* Maakt een subtiele vergroting bij hover */
}

.square-button.disabled,
.square-button:disabled {
    background: #cfd8e3;
    color: #5f6b7a;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

.square-button.disabled::before,
.square-button:disabled::before {
    opacity: 0.08;
    filter: grayscale(1);
}

.uitleg {
    text-align: center;
    margin: 0 auto 20px;
    font-family: "Poppins", serif;
    color: #06172B;
    max-width: 720px;
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35)),
                radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.25));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.uitleg h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.uitleg h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    margin: 10px auto 0;
    background: rgba(6, 23, 43, 0.25);
    border-radius: 999px;
}

.uitleg-lijst {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 540px;
    text-align: left;
    counter-reset: step; /* Reset de teller */
}

.uitleg-lijst li {
    position: relative;
    padding: 12px 0 12px 62px;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    counter-increment: step; /* Verhoog de teller per item */
    font-weight: 300;
}

.uitleg-lijst li:last-child {
    border-bottom: none;
}

.uitleg-lijst li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #06172B;
    color: white;
    display: flex;
    align-items: center; /* Verticaal centreren */
    justify-content: center; /* Horizontaal centreren */
    font-size: 0.9rem;
    font-weight: 400;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Voeg een subtiele schaduw toe */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.uitleg-lijst li::after {
    content: counter(step);
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-95%);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #2EC4E7;
    color: #06172B;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(6, 23, 43, 0.25);
}

.uitleg-lijst li:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 13a5 5 0 0 1 0-7l1.5-1.5a5 5 0 1 1 7.1 7.1L17 13' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 11a5 5 0 0 1 0 7L12.5 19.5a5 5 0 1 1-7.1-7.1L7 11' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.uitleg-lijst li:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4' width='6' height='6' rx='1.2' stroke='%232EC4E7' stroke-width='2'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1.2' stroke='%232EC4E7' stroke-width='2'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1.2' stroke='%232EC4E7' stroke-width='2'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1.2' stroke='%232EC4E7' stroke-width='2'/%3E%3C/svg%3E");
}

.uitleg-lijst li:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14 4v11a3 3 0 1 1-2-2.83V6h6' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.uitleg-lijst li:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' stroke='%232EC4E7' stroke-width='2'/%3E%3Cpath d='M3 7l9 6 9-6' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.uitleg-lijst li:nth-child(5)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 12v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-6' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 4v12' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8.5 7.5 12 4l3.5 3.5' stroke='%232EC4E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.steps {
    text-align: center;
    margin: 10px 20px 0 20px;
    box-sizing: border-box;
}
.steps h2 {
    font-weight: 300;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Verdeel bolletjes en lijnen gelijkmatig */
    margin: 0;
    width: 90%;
    margin: 0 5%;
    position: relative;
    box-sizing: border-box;
}

.progress-step {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #2EC4E7;
    border-radius: 50%;
    color: #2EC4E7;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center; /* Centreer tekst verticaal */
    justify-content: center; /* Centreer tekst horizontaal */
    z-index: 1; /* Zorg dat bolletjes boven de lijnen staan */
    transition: background 0.3s, color 0.3s;
}

.progress-step.active {
    background: #2EC4E7;
    color: #ffffff;
}

.progress-line {
    flex-grow: 1; /* Vul de resterende ruimte tussen de bolletjes */
    height: 4px;
    background: #e0e0e0;
    margin: 0 0px; /* Ruimte tussen de lijn en de bolletjes */
    position: relative;
    z-index: 0; /* Lijn onder de bolletjes */
}

.progress-line.active {
    background: #2EC4E7;
}

.hidden-bar {
    width: 100%;
    display: none; /* Verberg de wrapper standaard */
}

.hidden-bar.visible {
    display: block; /* Maak de wrapper zichtbaar */
}

#startMuzinoStart, #startMuzino, .btn-active-btnFinalizeMuzino, #goToMuzino {
    background: #06172B;
    color: #ffffff;
    border: none;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 6px;
    margin-top: 10px;
    box-sizing: border-box;
}
#startMuzino:hover, .btn-active-btnFinalizeMuzino:hover, , #goToMuzino:hover {
    background: #0d325c;
}   

.form-label {
    font-size: 1rem;
    color: #06172B;
    font-weight: 500;
    margin: 10px 0;
    display: block; /* Zorg dat het label boven het invoerveld staat */
}

.form-input {
    width: 100%;
    max-width: 400px; /* Limiteer de breedte */
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #2EC4E7;
    border-radius: 8px;
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #005f99;
    box-shadow: 0 4px 10px rgba(0, 95, 153, 0.2);
}

/* Standaard gedeactiveerde knop */
.btn-disabled {
    background: #cccccc; /* Grijze knop */
    color: #ffffff;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: not-allowed;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Actieve knop */
.btn-active {
    background: #2EC4E7; /* Felblauwe kleur */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-active:hover {
    background: #005f99; /* Donkerder blauw bij hover */
    transform: translateY(-2px); /* Subtiele beweging */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.form-input.valid {
    border-color: #28a745; /* Groen voor geldig */
}

.form-input.invalid {
    border-color: #dc3545; /* Rood voor ongeldig */
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #06172B;
    margin: 10px 0 20px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 22px;
    height: 22px;
    accent-color: #06172B;
}



/* Media queries */
@media (max-width: 768px) {
    .logo {
        width: 140px;
        height: 140px;
    }
    .input-group {
        width: 100%;
    }

    .playlist-input {
        padding: 10px;
        font-size: 14px;
    }

    .submit-button {
        padding: 10px;
        font-size: 14px;
    }
    .advice-buttons {
        flex-direction: column; /* Zet knoppen onder elkaar */
        gap: 15px; /* Pas de afstand tussen de knoppen aan */
        align-items: center; /* Centreer de knoppen horizontaal */
    }

    .advice-option {
        width: calc(100% - 100px); /* Zorg ervoor dat de knoppen de volledige breedte gebruiken */
        max-width: 500px; /* Limiteer de breedte op grotere schermen */
    }
    #choose-card {
        padding: 10px 0 60px 0;
    }
    .uitleg h2 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #06172B;
    }
}

@media (max-width: 480px) {
   
    .start-bingo, .start-info-muzino {
        width: calc(100% - 8px);
        padding: 0 4px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .playlist-input {
        font-size: 12px;
        padding: 8px;
    }

    .submit-button {
        font-size: 12px;
        padding: 8px;
    }
    .square-button {
        width: 100px; /* Maak knoppen iets kleiner op kleinere schermen */
        height: 100px;
        font-size: 12px;
    }

    .extra-buttons {
        gap: 10px; /* Verklein de ruimte tussen knoppen op kleinere schermen */
        padding: 5px;
    }
}




