:root {
    --cordeo-blue: #0066b3;
    --cordeo-yellow: #ffc20e;
    --cordeo-green: #8fc640;
    --cordeo-orange: #ee5921;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: 15px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f9 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background: var(--cordeo-blue);
    color: white;
    padding: 30px;
    text-align: center;
}

header .logo {
    max-width: 200px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    font-weight: 300;
}

#wizard-content {
    padding: 40px;
    min-height: 400px;
}

.question-container h2 {
    color: var(--cordeo-blue);
    margin-bottom: 10px;
    font-size: 20px;
}

.question-container h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    border-color: var(--cordeo-blue);
    background: #f8fbff;
    transform: translateX(5px);
}

.option-btn .icon {
    font-size: 32px;
}

.option-btn .text {
    flex: 1;
    color: #333;
}

.solution-container {
    line-height: 1.6;
}

.solution-container h2 {
    color: var(--cordeo-blue);
    margin-bottom: 20px;
}

.solution-container img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.solution-container .steps {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--cordeo-green);
    border-radius: 4px;
    margin: 20px 0;
}

.solution-container .warning {
    background: #fff3cd;
    border-left: 4px solid var(--cordeo-yellow);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

#breadcrumb {
    padding: 15px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

footer {
    padding: 20px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

#back-btn {
    background: #6c757d;
    color: white;
}

#back-btn:hover {
    background: #5a6268;
}

#restart-btn {
    background: var(--cordeo-orange);
    color: white;
}

#restart-btn:hover {
    background: #d94a1a;
}

.error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
}

.share-link {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.copy-link-btn {
    background: white;
    border: 2px solid var(--cordeo-blue);
    color: var(--cordeo-blue);
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    background: var(--cordeo-blue);
    color: white;
}

/* Followup styling */
.followup-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.followup-question {
    color: var(--cordeo-blue);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.followup-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.followup-btn {
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--cordeo-blue);
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--cordeo-blue);
    font-weight: 500;
}

.followup-btn:hover {
    background: var(--cordeo-blue);
    color: white;
    transform: translateX(5px);
}

/* Success button (groene variant) */
.followup-btn:first-child {
    border-color: var(--cordeo-green);
    color: var(--cordeo-green);
}

.followup-btn:first-child:hover {
    background: var(--cordeo-green);
    color: white;
}

/* Disabled button styling */
.option-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #d0d0d0;
    color: #999;
}

.option-btn.disabled:hover {
    transform: none;
    border-color: #d0d0d0;
    background: #f5f5f5;
}

.option-btn.disabled .text {
    color: #999;
}

.option-btn.disabled .icon {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Badge voor "Binnenkort" */
.option-btn .badge {
    background: var(--cordeo-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.option-btn.disabled .badge {
    background: #999;
}

.instruction {
    background: #f0f7ff;
    border-left: 4px solid var(--cordeo-blue);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    color: #555;
    line-height: 1.6;
}

.question-container h3 {
    margin-top: 0;
}

.check-container {
    line-height: 1.6;
}

.check-container h2 {
    color: var(--cordeo-blue);
    margin-bottom: 20px;
}

.check-container img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.check-container .steps {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--cordeo-blue);
    border-radius: 4px;
    margin: 20px 0;
}

.check-container .info {
    background: #fff3cd;
    border-left: 4px solid var(--cordeo-yellow);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.check-container code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #d63384;
}

/* Check question sectie (onderaan) */
.check-question-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.check-question {
    color: var(--cordeo-blue);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Question instruction (inline tekst bij question type) */
.instruction {
    background: #f0f7ff;
    border-left: 4px solid var(--cordeo-blue);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    color: #555;
    line-height: 1.6;
}