/* KEUZEHULP CSS */
.keuzehulp-test-container {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.keuzehulp-test-container h1 {
    color: #333;
    margin-bottom: 20px;
}

.btn-keuzehulp {
    background: #ed9c00;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-keuzehulp:hover {
    background: #be7d00;
}

.keuzehulp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.keuzehulp-modal.active {
    display: flex;
}

.keuzehulp-container {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.keuzehulp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 5px 10px;
}

.keuzehulp-close:hover {
    color: #000;
}

.keuzehulp-progress {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #ed9c00;
    color: white;
}

.keuzehulp-stap h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.keuzehulp-opties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Radio button styling (voor vorm) */
.keuzehulp-optie-radio {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keuzehulp-optie-radio:hover {
    border-color: #ed9c00;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.keuzehulp-optie-radio.active {
    border-color: #ed9c00;
    background: #e3f2fd;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

/* Checkbox styling */
.keuzehulp-opties-checkbox {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.keuzehulp-optie-checkbox {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.keuzehulp-optie-checkbox:hover {
    border-color: #ed9c00;
    background: #f0f8ff;
}

.keuzehulp-optie-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.keuzehulp-optie-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #ed9c00;
    border-color: #ed9c00;
}

.keuzehulp-optie-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.keuzehulp-optie-checkbox input[type="checkbox"]:checked ~ div {
    color: #ed9c00;
}

.optie-titel {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.optie-info {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Buttons */
.keuzehulp-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 30px;
}

.keuzehulp-terug {
    background: #979797;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.keuzehulp-terug:hover {
    background: #888888;
}

.keuzehulp-volgende {
    background: #ed9c00;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
}

.keuzehulp-volgende:hover {
    background: #be7d00;
}

/* Resultaat styling */
.resultaat-container {
    text-align: center;
    padding: 20px;
}

.resultaat-container h2 {
    color: #333333;
    margin-bottom: 20px;
}

.resultaat-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.resultaat-details p {
    margin: 10px 0;
    font-size: 16px;
}

.resultaat-details strong {
    color: #ed9c00;
}

.btn-resultaten {
    background: #ed9c00;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-resultaten:hover {
    background: #be7d00;
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .keuzehulp-container {
        padding: 30px 20px;
    }
    
    .keuzehulp-opties {
        grid-template-columns: 1fr;
    }
    
    .keuzehulp-stap h2 {
        font-size: 20px;
    }
    
    .keuzehulp-buttons {
        flex-direction: column;
    }
    
    .keuzehulp-volgende {
        margin-left: 0;
    }
}