#keuzehulp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9999;
}

#keuzehulp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
}

#keuzehulp-popup {
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

#keuzehulp-close {
    position: absolute;
    top: 4px;   /* Afstand van de bovenkant */
    right: 8px; /* Afstand van de rechterkant */
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333; /* Donkere kleur voor contrast */
}


.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.option {
    padding: 10px;
    background: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
    text-align: left;
}

.option:hover {
    background: #ddd;
}


.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #007BFF;
    margin-left: 5px;
    cursor: pointer;
    position: relative;
    vertical-align: 12px;  /* <== Hier kun je de uitlijning iets verhogen */
    transition: background-color 0.3s ease;
}

.info-icon::before {
    content: 'i';
    color: white;
    font-size: 12px;
    font-weight: bold;
    font-family: sans-serif;
    line-height: 1;
}

.info-icon:hover {
    background-color: #0056b3;
}

.info-text {
    display: none;
    font-size: 0.9em;
    color: #333;
    margin-top: 6px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
}


.keuzehulp-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    text-align: center;
    font-size: 0.9em;
    color: #ccc;
}

.step-indicator .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #ccc;
    font-weight: bold;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.step-indicator.active .circle {
    border-color: #0073aa;
    background: white;
    color: #0073aa;
}

.step-indicator.completed .circle {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.step-indicator .label {
    font-size: 0.75em;
}

.keuzehulp-progress::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step-indicator:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: -1;
}

.step-indicator.completed:not(:first-child)::before {
    background: #0073aa;
}
