

.qb-questionnaire-title {
    color: #333;
    margin-bottom: 15px;
}

.qb-questionnaire-description {
    color: #666;
    margin-bottom: 30px;
}

.qb-question {
    margin-bottom: 25px;
}

.qb-question-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.qb-required {
    color: #e74c3c;
}

.qb-input-text,
.qb-input-textarea,
.qb-input-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.qb-input-textarea {
    min-height: 120px;
}

.qb-options-container {
    margin-top: 10px;
}

.qb-option-label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.qb-option-label input {
    margin-right: 8px;
}

.qb-submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.qb-submit-btn:hover {
    background: #2980b9;
}

.qb-submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

#qb-form-messages {
    margin-top: 20px;
}

.qb-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.qb-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.qb-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.qb-ending-content {
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.qb-social-links {
    margin-top: 20px;
}

.qb-social-link {
    display: inline-block;
    margin: 0 10px;
}

.qb-social-link img {
    width: 32px;
    height: 32px;
}

/*preview section */

.qb-preview-container {
    /* max-width: 1000px;
    margin: 0 auto;
    padding: 30px; */
}

.qb-preview-header {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.qb-preview-header h1 {
    margin-top: 0;
    color: #23282d;
}

.qb-preview-shortcode {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: white;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.qb-preview-shortcode code {
    flex: 1;
    font-family: monospace;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 3px;
}

.qb-preview-shortcode button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.qb-preview-shortcode button:hover {
    background: #135e96;
}

.qb-preview-content {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* footer note */

.wpkyc-footer-note{
    text-align: center;
  }