.smart-quiz-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sq-question {
    margin-bottom: 30px;
}

.sq-question-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.sq-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sq-option {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.sq-option:hover {
    border-color: #bbb;
    background: #fdfdfd;
}

.sq-option.selected {
    border-color: #007cba;
    background: #f0f7fc;
    color: #007cba;
    font-weight: 600;
}

.sq-submit-btn,
.sq-reset-btn {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.sq-submit-btn:hover,
.sq-reset-btn:hover {
    background: #006ba1;
}

.sq-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Results */
.sq-result-card {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.sq-result-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sq-result-title {
    color: #222;
    margin-bottom: 15px;
}

.sq-result-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}