.survey-container {
    max-width: 1080px;
	margin: 30px auto;
	padding: 40px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	text-align: center;
}
/*.survey-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}*/
.seller-info-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;

    background: none;
    color: black;
}
.survey-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}
.survey-description {
    font-size: 14px;
    color: #666;
	line-height:1.7;
}
.session-debug {
    background: #f8f9fa;
    border: 1px dashed #6c757d;
    padding: 10px;
    margin: 10px 0;
    font-size: 12px;
    color: #6c757d;
}
.progress-section {
    margin: 20px 0;
}
.progress-bar {
    background: #999;
    height: 10px;
    border-radius: 5px;
    margin: 0 0 10px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: #007bff;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}
/*.progress-text {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}*/
.question-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	text-align:left;
}
.question-number {
    display: inline-block;
    background: #6875de;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}
.question-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.choices-container {
    margin-top: 15px;
}
.choice-option {
    display: block;
    padding: 12px 15px;
    margin: 8px 0;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
.choice-option:hover {
    border-color: #007bff;
    background: #f8f9ff;
}
.choice-option.selected {
    border-color: #007bff;
    background: #e7f3ff;
}
.choice-radio {
    margin-right: 12px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}
.choice-text {
    font-size: 15px;
    color: #333;
    vertical-align: middle;
}
.submit-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 6px;
}
.submit-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-btn:hover:not(:disabled) {
    background: #218838;
}
.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}
.completion-status {
    margin-top: 15px;
    font-size: 14px;
    color: #dc3545;
}
.no-questions {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.no-questions h3 {
    color: #333;
    margin-bottom: 15px;
}
.admin-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}
.admin-link:hover {
    text-decoration: underline;
}
.result-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}
.result-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.result-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.result-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.result-keywords {
    margin-top: 15px;
}
.session-debug {
    background: #f8f9fa;
    border: 1px dashed #6c757d;
    padding: 10px;
    margin: 10px 0;
    font-size: 12px;
    color: #6c757d;
}
.scores-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}
.score-label {
    font-weight: bold;
    color: #333;
    min-width: 150px;
}
.score-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    margin: 0 15px;
    overflow: hidden;
}
.comparison-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}
.comparison-label {
    font-size: 18px;
    font-weight: bold;
}
.comparison-scores {
    display: flex;
    gap: 20px;
}
.comparison-score {
    padding: 5px 10px;
    border-radius: 5px;
    background: #f8f9fa;
}
.strengths-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.strength-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}
.product-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    color: white;
}
.actions {
    text-align: center;
    margin: 30px 0;
}
.btn:hover {
    opacity: 0.8;
    color: white;
}
.btn.secondary {
    background: #6c757d;
}
.btn.secondary:hover {
    background: #545b62;
}
.btn.primary {
    background: white;
    color: #764ba2;
    font-size: 18px;
    padding: 15px 30px;
}
.info-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.choice-option {
    display: block;
    padding: 12px 16px;
    margin: 8px 0;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-option:hover {
    background: #e9ecef;
    border-color: #007cba;
}

.choice-option.selected {
    background: #e7f3ff;
    border-color: #007cba;
}

.choice-radio {
    margin-right: 10px;
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:not(:disabled) {
    background: #007cba;
    cursor: pointer;
}

.submit-btn:not(:disabled):hover {
    background: #0056b3;
}