.quiz-container {
    max-width: 700px;
    margin: 50px auto;
}

.question-card {
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress {
    height: 8px;
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

/* Remove all borders except the bottom one */
.custom-typeform-input {
    border: none;
    border-bottom: 2px solid #dee2e6;
    /* Light gray */
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.2rem;
    /* Large text */
    transition: border-color 0.3s ease;
}

/* Change underline color on focus */
.custom-typeform-input:focus {
    box-shadow: none;
    border-color: #631A5A;
    /* Bootstrap Primary Blue */
    background-color: rgba(0, 0, 0, 0);
    outline: none;
}

/* Optional: Placeholder styling */
.custom-typeform-input::placeholder {
    color: #adb5bd;
    opacity: 0.5;
}

/* The Main Tile */
.typeform-option {
    border: 1px solid #dee2e6;
    /* Soft border */
    background-color: rgba(13, 110, 253, 0.03);
    /* Very light blue tint */
    color: #212529;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

/* Hover State */
.typeform-option:hover {
    background-color: rgba(13, 110, 253, 0.08);
    border-color: #631A5A;
    color: #212529;
}

/* Selected State (Checked) */
.btn-check:checked+.typeform-option {
    background-color: #EBE2EA;
    border-color: #631A5A;
    color: #631A5A;
    font-weight: 500;
}

/* The "A/B/C" Badge */
.option-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-check:checked+.typeform-option::after {
    font-family: "unicons";
    content: "\e9dd";
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: bold;
}