.askfast-survey-container {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.askfast-survey-loading {
    text-align: center;
    color: #6b7280;
    padding: 20px;
}

.askfast-survey-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.askfast-question {
    margin-bottom: 32px;
}

.askfast-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.askfast-answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.askfast-answer {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.askfast-answer:hover {
    border-color: #4f46e5;
    background: #f9fafb;
}

.askfast-answer input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.askfast-answer label {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.askfast-survey-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.askfast-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.askfast-btn-primary {
    background: #4f46e5;
    color: white;
}

.askfast-btn-primary:hover {
    background: #4338ca;
}

.askfast-btn-secondary {
    background: #f3f4f6;
    color: #111827;
}

.askfast-btn-secondary:hover {
    background: #e5e7eb;
}

.askfast-progress {
    margin-bottom: 24px;
}

.askfast-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.askfast-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #4338ca);
    transition: width 0.3s;
}

.askfast-progress-text {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
}

.askfast-results {
    margin-top: 32px;
}

.askfast-result-item {
    margin-bottom: 20px;
}

.askfast-result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.askfast-result-text {
    font-weight: 500;
}

.askfast-result-percentage {
    font-weight: 600;
    color: #4f46e5;
}

.askfast-result-bar {
    height: 32px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.askfast-result-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #4338ca);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: width 0.5s;
}

.askfast-powered-by {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: #6b7280;
}

.askfast-powered-by a {
    color: #4f46e5;
    text-decoration: none;
}

.askfast-powered-by a:hover {
    text-decoration: underline;
}