#vilsen-wizard {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}

/* Steg-cirklar */
#vilsen-wizard-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

#vilsen-wizard-steps .step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: 0.3s;
}

#vilsen-wizard-steps .step.active {
    background: #0073aa;
}

/* Panels */
#vilsen-wizard-panels {
    display: flex;
    width: 600%;
    transition: transform 0.4s ease;
}

.panel {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Upload */
#vilsen-upload-box {
    background: #f4f4f4;
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
}

#vilsen-upload-box:hover {
    border-color: #0073aa;
}

#vilsen-upload-box input {
    display: none;
}

#vilsen-image-preview {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    display: none;
}

/* Radio buttons */
.vilsen-radio-group {
    display: flex;
    gap: 10px;
}

.vilsen-radio {
    flex: 1;
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

.vilsen-radio input {
    display: none;
}

.vilsen-radio input:checked + span {
    font-weight: bold;
    color: #0073aa;
}

/* Buttons */
button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.next {
    background: #0073aa;
    color: #fff;
}

.next.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.back {
    background: #ccc;
    color: #333;
}

/* Map */
#vilsen-map {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin: 10px 0 20px 0;
}

/* Summary */
#vilsen-summary {
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}
