/**
 * Uhulo App Styles
 */

/* Reset and Base Styles */
* {
	box-sizing: border-box;
}

body.uhulo-body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #1c1c1c;
	background-color: #fff;
	font-size: 16px !important;
}

/* Container */
.uhulo-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.uhulo-header {
	background-color: transparent;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.uhulo-header-promo {
	padding: 0.75rem 0;
}

.uhulo-header-promo .uhulo-header-content {
	justify-content: center;
}

.uhulo-header-container {
	width: 100%;
}

.uhulo-header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.uhulo-logo a {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
}

.uhulo-logo a:hover {
	color: #009b52;
}

/* Promo Logo (for question/flow pages) */
.uhulo-promo-logo {
	font-size: 1.75rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	text-align: center;
}

.uhulo-promo-logo a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}

.uhulo-promo-logo a:hover {
	color: #007cba;
}

/* Navigation */
.uhulo-navigation {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.uhulo-navigation a {
	color: #666;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.2s;
}

.uhulo-navigation a:hover {
	color: #009b52;
	background-color: #f0f0f0;
}

.uhulo-navigation a.active {
	color: #009b52;
	font-weight: 600;
	background-color: #e8f4f8;
}

/* Header Actions */
.uhulo-header-actions {
	display: flex;
	align-items: center;
}

.uhulo-header-actions a {
	color: #666;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.2s;
}

.uhulo-header-actions a:hover {
	color: #009b52;
	background-color: #f0f0f0;
}

/* Main Content */
.uhulo-main {
	min-height: calc(100vh - 200px);
}

/* Page Styles */
.uhulo-page {
	width: 100%;
}

.uhulo-page h1 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #1c1c1c;
	font-size: 3rem;
}

/* Auth Forms */
.uhulo-auth-form {
	max-width: 400px;
	margin: 2rem auto;
	padding: 2rem;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.uhulo-auth-form h1 {
	text-align: center;
	margin-bottom: 1.5rem;
}

.uhulo-form-group {
	margin-bottom: 1.5rem;
}

.uhulo-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.uhulo-form-group input[type="text"],
.uhulo-form-group input[type="email"],
.uhulo-form-group input[type="password"] {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.2s;
}

#uhulo-response-form {
	position: fixed;
	bottom: 70px;
	width: 100%;
	max-width: 1200px;
}

.uhulo-form-group input[type="text"]:focus,
.uhulo-form-group input[type="email"]:focus,
.uhulo-form-group input[type="password"]:focus {
	outline: none;
	border-color: #009b52;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.uhulo-form-group input[type="checkbox"] {
	margin-right: 0.5rem;
}

.uhulo-form-group label:has(input[type="checkbox"]) {
	display: flex;
	align-items: center;
	font-weight: normal;
}

/* Buttons */
.uhulo-button {
	width: 100%;
	padding: 0.75rem 1.5rem;
	background-color: #009b52;
	color: #fff;
	border: none;
	border-radius: 100px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
	text-decoration: none;
}

.uhulo-button:hover {
	background-color: #005a87;
}

.uhulo-button:active {
	transform: translateY(1px);
}

/* Messages */
.uhulo-error {
	padding: 1rem;
	background-color: #fee;
	border: 1px solid #fcc;
	border-radius: 4px;
	color: #c33;
	margin-bottom: 1.5rem;
}

.uhulo-success {
	padding: 1rem;
	background-color: #efe;
	border: 1px solid #cfc;
	border-radius: 4px;
	color: #3c3;
	margin-bottom: 1.5rem;
}

.uhulo-email-confirmation-notice {
	margin-top: 1rem;
	padding: 1rem;
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
}

.uhulo-email-confirmation-notice p {
	margin: 0 0 0.75rem 0;
	color: #856404;
}

.uhulo-resend-confirmation-form {
	margin-top: 0.5rem;
}

/* Profile Page Styles */
.uhulo-page-profile {
	padding: 2rem 0;
}

.uhulo-profile-form-wrapper {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
}

.uhulo-profile-form {
	max-width: 600px;
}

.uhulo-form-section {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.uhulo-form-section h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #333;
	font-size: 1.25rem;
}

.uhulo-section-description {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	margin-top: -0.5rem;
}

.uhulo-form-control {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
}

.uhulo-form-control:focus {
	outline: none;
	border-color: #009b52;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.uhulo-help-text {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 0;
}

.uhulo-warning-text {
	color: #856404;
}

.uhulo-info {
	padding: 1rem;
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	border-radius: 4px;
	color: #0c5460;
	margin-bottom: 1.5rem;
}

.uhulo-info p {
	margin: 0;
}

/* Auth Links */
.uhulo-auth-links {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e0e0e0;
}

.uhulo-auth-links a {
	color: #009b52;
	text-decoration: none;
}

.uhulo-auth-links a:hover {
	text-decoration: underline;
}

.uhulo-auth-links span {
	margin: 0 0.5rem;
	color: #ccc;
}

/* Questions List */
.uhulo-questions-list {
	display: grid;
	gap: 1.5rem;
}

.uhulo-question-item {
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 20px;
	transition: box-shadow 0.2s;
	border: 1px solid #e5e5e5;
}

.uhulo-question-item:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uhulo-question-item h2 {
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.uhulo-question-item h2 a {
	color: #333;
	text-decoration: none;
}

.uhulo-question-item h2 a:hover {
	color: #009b52;
}

.uhulo-question-excerpt {
	color: #666;
	margin-top: 0.5rem;
}

.uhulo-question-item {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.uhulo-question-content {
	flex: 1;
}

.uhulo-question-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	color: #666;
}

.uhulo-question-type {
	background-color: #e8f4f8;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
}

.uhulo-question-id {
	font-family: monospace;
}

.uhulo-question-flow {
	background-color: #fff3cd;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.875rem;
}

.uhulo-question-actions {
	margin-top: 1rem;
}

.uhulo-question-qr {
	text-align: center;
}

.uhulo-question-qr img {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 0.5rem;
	background-color: #fff;
}

.uhulo-qr-note {
	font-size: 0.875rem;
	color: #666;
	margin-top: 0.5rem;
}

.uhulo-questions-actions {
	margin-bottom: 2rem;
}

.uhulo-button-small {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.uhulo-button-secondary {
	padding: 0.5rem 1rem;
	background-color: #666;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.uhulo-button-secondary:hover {
	background-color: #555;
}

/* Question Form Styles */
.uhulo-form-group textarea,
.uhulo-form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.2s;
	font-family: inherit;
}

.uhulo-form-group textarea:focus,
.uhulo-form-group select:focus {
	outline: none;
	border-color: #009b52;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.uhulo-option-item {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	align-items: center;
}

.uhulo-option-item input {
	flex: 1;
}

.uhulo-option-item button {
	padding: 0.5rem 1rem;
	background-color: #c33;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
}

.uhulo-option-item button:hover {
	background-color: #a22;
}

/* Response Form Styles */
.uhulo-radio-group,
.uhulo-radio-label,
.uhulo-checkbox-label {
	display: block;
	margin-bottom: 0.75rem;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
}

.uhulo-radio-group {
	display: flex;
	gap: 1rem;
}

.uhulo-radio-group label {
	flex: 1;
	text-align: center;
}

.uhulo-radio-label:hover,
.uhulo-checkbox-label:hover {
	background-color: #f5f5f5;
	border-color: #009b52;
}

.uhulo-radio-label input[type="radio"],
.uhulo-checkbox-label input[type="checkbox"] {
	margin-right: 0.5rem;
}

.uhulo-radio-label input[type="radio"]:checked + span,
.uhulo-checkbox-label input[type="checkbox"]:checked + span {
	font-weight: 600;
}

.uhulo-question-view {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0px;
	background-color: transparent;
}

.uhulo-question-author-actions {
	margin: 1.5rem 0;
}

/* Flow Page Styles */
.uhulo-flow-view {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 8px;
}

.uhulo-flow-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-flow-header h1 {
	margin-top: 0;
	margin-bottom: 1rem;
}

.uhulo-flow-description {
	margin: 1rem 0;
	padding: 1rem;
	background-color: #f5f5f5;
	border-radius: 4px;
	color: #666;
}

.uhulo-flow-progress {
	font-size: 1.125rem;
	font-weight: 500;
	color: #009b52;
	margin-top: 1rem;
}

.uhulo-question-step {
	margin-top: 2rem;
}

.uhulo-question-step h2 {
	margin-top: 0;
	margin-bottom: 1rem;
}

/* Flows List Styles */
.uhulo-flows-list {
	display: grid;
	gap: 1.5rem;
}

.uhulo-flow-item {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.2s;
}

.uhulo-flow-item:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uhulo-flow-content {
	flex: 1;
}

.uhulo-flow-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	color: #666;
}

.uhulo-flow-id {
	font-family: monospace;
}

.uhulo-flow-questions-count {
	background-color: #e8f4f8;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
}

.uhulo-flow-excerpt {
	color: #666;
	margin-top: 0.5rem;
}

.uhulo-flow-actions {
	margin-top: 1rem;
}

.uhulo-flow-qr {
	text-align: center;
}

.uhulo-flow-qr img {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 0.5rem;
	background-color: #fff;
}

.uhulo-question-description {
	margin: 1.5rem 0;
	color: #1c1c1c8c;
	line-height: 1.6;
}

/* Responses Page Styles */
.uhulo-question-responses-view {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.uhulo-question-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-question-header h1 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.uhulo-question-link {
	margin-top: 0.5rem;
}

.uhulo-question-link a {
	color: #009b52;
	text-decoration: none;
}

.uhulo-question-link a:hover {
	text-decoration: underline;
}

.uhulo-responses-settings {
	margin-bottom: 2rem;
	padding: 1rem;
	background-color: #f5f5f5;
	border-radius: 4px;
}

.uhulo-question-settings {
	margin: 2rem 0;
	padding: 1.5rem;
	background-color: #f5f5f5;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}

.uhulo-settings-options {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.uhulo-settings-options .uhulo-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	cursor: pointer;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}

.uhulo-settings-options .uhulo-checkbox-label:hover {
	background: none;
}

.uhulo-settings-options .uhulo-help-text {
	margin: 0.25rem 0 0 1.75rem;
	font-size: 0.875rem;
	color: #666;
}

.uhulo-responses-settings label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	cursor: pointer;
}

.uhulo-responses-settings input[type="checkbox"] {
	margin: 0;
}

.uhulo-help-text {
	margin: 0.5rem 0 0 0;
	font-size: 0.875rem;
	color: #666;
}

.uhulo-responses-stats {
	margin-bottom: 1.5rem;
}

.uhulo-responses-stats h2 {
	margin: 0;
	font-size: 1.5rem;
}

.uhulo-responses-list {
	display: grid;
	gap: 1rem;
}

.uhulo-response-item {
	padding: 1.5rem;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: box-shadow 0.2s;
}

.uhulo-response-item:hover {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.uhulo-response-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-response-header-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.uhulo-response-email {
	font-size: 0.875rem;
	color: #666;
	font-style: italic;
}

.uhulo-response-type {
	background-color: #e8f4f8;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
}

.uhulo-response-date {
	font-size: 0.875rem;
	color: #666;
}

.uhulo-response-content {
	color: #333;
	line-height: 1.6;
}

.uhulo-response-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin-top: 0.5rem;
}

.uhulo-no-responses {
	text-align: center;
	padding: 3rem 1rem;
	color: #666;
}

.uhulo-no-responses p {
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
}

.uhulo-question-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.uhulo-delete-question-form {
	margin: 0;
}

.uhulo-button-danger {
	background-color: #dc3545;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.875rem;
	transition: background-color 0.2s;
}

.uhulo-button-danger:hover {
	background-color: #c82333;
}

.uhulo-button-danger:active {
	transform: translateY(1px);
}

/* Question Checkbox */
.uhulo-question-checkbox {
	padding-right: 1rem;
	display: flex;
	align-items: flex-start;
	padding-top: 0.5rem;
}

.uhulo-question-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin: 0;
}

.uhulo-question-item {
	display: flex;
	align-items: flex-start;
}

/* Modal Styles */
.uhulo-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.uhulo-modal-content {
	background-color: #fff;
	margin: 5% auto;
	padding: 0;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.uhulo-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
}

.uhulo-modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uhulo-modal-close:hover {
	color: #333;
}

.uhulo-modal-content form {
	padding: 1.5rem;
}

.uhulo-button-secondary {
	background-color: #6c757d;
	color: #fff;
	border: 1px solid #6c757d;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.2s;
	text-decoration: none;
	display: inline-block;
}

.uhulo-button-secondary:hover {
	background-color: #5a6268;
	border-color: #545b62;
}

.uhulo-button-secondary:active {
	background-color: #545b62;
	border-color: #4e555b;
}

/* Flow Questions Reordering */
.uhulo-flow-questions-manage {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.uhulo-flow-questions-manage h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
}

.uhulo-flow-questions-reorder {
	list-style: none;
	padding: 0;
	margin: 0;
}

.uhulo-flow-question-item {
	display: flex;
	align-items: center;
	padding: 0.75rem;
	margin-bottom: 0.5rem;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.uhulo-flow-question-item:hover {
	background-color: #f5f5f5;
}

.uhulo-reorder-handle {
	margin-right: 1rem;
	cursor: grab;
	color: #999;
	font-size: 1.2rem;
	user-select: none;
}

.uhulo-reorder-handle:hover {
	color: #666;
}

.uhulo-flow-question-item[draggable="true"] {
	cursor: grab;
}

.uhulo-flow-question-item[draggable="true"]:active {
	cursor: grabbing;
}

.uhulo-reorder-icon {
	display: inline-block;
}

.uhulo-question-info {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.uhulo-question-step {
	font-weight: bold;
	color: #666;
	min-width: 2rem;
}

.uhulo-question-title {
	font-weight: 500;
	color: #333;
}

.uhulo-question-type {
	color: #999;
	font-size: 0.875rem;
	font-style: italic;
}

.uhulo-reorder-actions {
	display: flex;
	gap: 0.25rem;
	margin-left: 1rem;
}

.uhulo-reorder-btn {
	background-color: #007cba;
	color: #fff;
	border: none;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	transition: background-color 0.2s;
	min-width: 36px;
}

.uhulo-reorder-btn:hover {
	background-color: #005a87;
}

.uhulo-reorder-btn:active {
	background-color: #004a6f;
}

.uhulo-reorder-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Drag and Drop Styles */
.uhulo-flow-question-item.draggable {
	cursor: move;
}

.uhulo-flow-question-item.uhulo-dragging {
	opacity: 0.5;
	background-color: #e8f4f8;
	border: 2px dashed #007cba;
}

.uhulo-flow-question-item.uhulo-drag-over {
	position: relative;
}

.uhulo-flow-question-item.uhulo-drag-over-top::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #007cba;
	border-radius: 2px;
	z-index: 10;
}

.uhulo-flow-question-item.uhulo-drag-over-bottom::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #007cba;
	border-radius: 2px;
	z-index: 10;
}

.uhulo-reorder-save {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

/* Footer */
.uhulo-footer {
	background-color: transparent;
	position: fixed;
	bottom: 0;
	width: 100%;
}

.uhulo-footer-container {
	width: 100%;
}

.uhulo-footer-content {
	max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    color: #666;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

/* Variant Styles */
.uhulo-variant-badge {
	background-color: #e8f4f8;
	border: 1px solid #007cba;
	border-radius: 4px;
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
	color: #007cba;
	font-size: 0.9rem;
}

.uhulo-response-variant {
	font-weight: 500;
	color: #007cba;
	margin-left: 0.5rem;
}

/* Star Rating */
.uhulo-star-rating {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	margin: 1rem 0;
	direction: ltr; /* Ensure left-to-right for star display */
}

.uhulo-star {
	font-size: 2rem;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s, transform 0.1s;
	user-select: none;
	line-height: 1;
}

.uhulo-star:hover {
	transform: scale(1.1);
}

.uhulo-star.uhulo-star-hover {
	color: #ffc107;
}

.uhulo-star.uhulo-star-selected {
	color: #ffc107;
}

.uhulo-rating-text {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
}

/* Average Rating Display */
.uhulo-average-rating {
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
	text-align: center;
}

.uhulo-average-rating-value {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.uhulo-average-rating-value strong {
	color: #333;
	font-weight: bold;
}

.uhulo-average-rating-max {
	color: #999;
	font-size: 1.2rem;
	font-weight: normal;
}

.uhulo-average-rating-stars {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin: 0.75rem 0;
	direction: ltr;
}

.uhulo-star-display {
	font-size: 1.5rem;
	line-height: 1;
}

.uhulo-star-display.uhulo-star-full {
	color: #ffc107;
}


.uhulo-star-display.uhulo-star-empty {
	color: #ddd;
}

.uhulo-average-rating-label {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
	margin-bottom: 0;
}

/* Yes/No Chart */
.uhulo-yes-no-chart {
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
}

.uhulo-yes-no-chart h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.2rem;
}

.uhulo-chart-container {
	width: 100%;
}

.uhulo-chart-bars {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

.uhulo-chart-bar-group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.uhulo-chart-bar-label {
	width: 150px;
	min-width: 150px;
	max-width: 150px;
	font-weight: 500;
	color: #333;
	text-align: right;
	padding-right: 1rem;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uhulo-chart-bar-wrapper {
	flex: 1;
	background-color: #e0e0e0;
	border-radius: 4px;
	height: 40px;
	position: relative;
	overflow: hidden;
}

.uhulo-chart-bar {
	height: 100%;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 0.75rem;
	transition: width 0.5s ease;
	min-width: 60px;
}

.uhulo-chart-bar-yes {
	background-color: #28a745;
	color: #fff;
}

.uhulo-chart-bar-no {
	background-color: #dc3545;
	color: #fff;
}

.uhulo-chart-bar-value {
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
}

.uhulo-chart-summary {
	border-top: 1px solid #e0e0e0;
	padding-top: 1rem;
	margin-top: 1rem;
}

.uhulo-chart-summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.uhulo-chart-summary-label {
	color: #666;
	font-size: 0.9rem;
}

.uhulo-chart-summary-value {
	font-weight: 600;
	color: #333;
	font-size: 1.1rem;
}

/* Choice Chart (One-choice and Multiple-choice) */
.uhulo-choice-chart {
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
}

.uhulo-choice-chart h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.2rem;
}

.uhulo-chart-bar-choice {
	background-color: #007cba;
	color: #fff;
}

.uhulo-chart-help-text {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #666;
	font-style: italic;
}

/* Warning Message */
.uhulo-warning {
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	color: #856404;
}

.uhulo-warning p {
	margin: 0;
}

.uhulo-warning strong {
	font-weight: 600;
}

/* Info Message */
.uhulo-info {
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	border-radius: 4px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	color: #0c5460;
}

.uhulo-info p {
	margin: 0;
}

.uhulo-info strong {
	font-weight: 600;
}

/* Question Settings Page */
.uhulo-page-question-settings .uhulo-question-info {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.uhulo-page-question-settings .uhulo-question-info h2 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.uhulo-page-question-settings .uhulo-question-link {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

.uhulo-page-question-settings .uhulo-question-link a {
	color: #007cba;
	text-decoration: none;
	margin-right: 0.5rem;
}

.uhulo-page-question-settings .uhulo-question-link a:hover {
	text-decoration: underline;
}

/* Question Edit Page */
.uhulo-page-question-edit .uhulo-question-link {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

.uhulo-page-question-edit .uhulo-question-link a {
	color: #007cba;
	text-decoration: none;
	margin-right: 0.5rem;
}

.uhulo-page-question-edit .uhulo-question-link a:hover {
	text-decoration: underline;
}

.uhulo-options-display {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.uhulo-option-display-item {
	padding: 0.5rem;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.uhulo-rating-display {
	padding: 0.5rem;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	display: inline-block;
	margin-top: 0.5rem;
	font-weight: 500;
}

/* QR Code Actions */
.uhulo-qr-actions {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

.uhulo-qr-downloads {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.uhulo-qr-downloads .uhulo-button-small {
	padding: 0.25rem 0.5rem;
	font-size: 0.75rem;
	min-width: auto;
}

.uhulo-qr-copy {
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
}

.uhulo-variant-qr .uhulo-qr-actions {
	margin-top: 0.5rem;
}

.uhulo-variant-qr .uhulo-qr-downloads {
	gap: 0.25rem;
}

.uhulo-variant-qr .uhulo-qr-downloads .uhulo-button-small,
.uhulo-variant-qr .uhulo-qr-copy {
	padding: 0.2rem 0.4rem;
	font-size: 0.7rem;
}

/* Live Update Indicator */
.uhulo-live-update-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #28a745;
	margin-left: 1rem;
	font-weight: 500;
}

.uhulo-pulse {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #28a745;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Update Animation */
.uhulo-updated {
	animation: flashUpdate 0.5s ease;
}

@keyframes flashUpdate {
	0% {
		background-color: transparent;
	}
	50% {
		background-color: rgba(40, 167, 69, 0.1);
	}
	100% {
		background-color: transparent;
	}
}

.uhulo-question-variants-manage {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.uhulo-question-variants-manage h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
}

.uhulo-variants-actions {
	margin-bottom: 1rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.uhulo-variants-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.uhulo-variant-item {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.uhulo-variant-info {
	text-align: center;
	width: 100%;
}

.uhulo-variant-info strong {
	display: block;
	margin-bottom: 0.25rem;
	color: #333;
}

.uhulo-variant-id {
	display: block;
	font-size: 0.75rem;
	color: #999;
	margin-top: 0.25rem;
}

.uhulo-variant-qr {
	text-align: center;
}

.uhulo-variant-actions {
	width: 100%;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.uhulo-header-content {
		flex-direction: column;
		gap: 1rem;
	}
	
	.uhulo-navigation {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.uhulo-auth-form {
		margin: 1rem;
		padding: 1.5rem;
	}
	
	.uhulo-page h1 {
		font-size: 1.5rem;
	}
}

/* Analytics Page Styles */
.uhulo-page-analytics {
	padding: 2rem 0;
}

.uhulo-analytics-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.uhulo-analytics-summary-card {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.uhulo-analytics-summary-card h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.25rem;
}

.uhulo-analytics-stats {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.uhulo-analytics-stat {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.uhulo-analytics-stat:last-child {
	border-bottom: none;
}

.uhulo-analytics-stat-label {
	color: #666;
	font-size: 0.95rem;
}

.uhulo-analytics-stat-value {
	font-weight: 600;
	color: #333;
	font-size: 1.1rem;
}

.uhulo-analytics-section {
	margin-bottom: 2.5rem;
}

.uhulo-analytics-section h2 {
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.5rem;
}

.uhulo-analytics-table-wrapper {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.uhulo-analytics-table {
	width: 100%;
	border-collapse: collapse;
}

.uhulo-analytics-table thead {
	background-color: #f8f9fa;
}

.uhulo-analytics-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #333;
	border-bottom: 2px solid #e0e0e0;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.uhulo-analytics-table td {
	padding: 1rem;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
}

.uhulo-analytics-table tbody tr:hover {
	background-color: #f8f9fa;
}

.uhulo-analytics-table tbody tr:last-child td {
	border-bottom: none;
}

.uhulo-analytics-table .uhulo-meta {
	color: #999;
	font-size: 0.85rem;
}

.uhulo-analytics-table .uhulo-button-small {
	margin-right: 0.5rem;
}

@media (max-width: 768px) {
	.uhulo-analytics-summary {
		grid-template-columns: 1fr;
	}
	
	.uhulo-analytics-table-wrapper {
		overflow-x: auto;
	}
	
	.uhulo-analytics-table {
		min-width: 600px;
	}
	
	.uhulo-analytics-table th,
	.uhulo-analytics-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.9rem;
	}
}

/* Billing Page Styles */
.uhulo-page-billing {
	padding: 2rem 0;
}

.uhulo-subscription-status {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
}

.uhulo-subscription-status h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #333;
}

.uhulo-subscription-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.uhulo-subscription-info p {
	margin: 0;
	color: #666;
}

.uhulo-status-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: capitalize;
}

.uhulo-status-active {
	background-color: #d4edda;
	color: #155724;
}

.uhulo-status-trialing {
	background-color: #d1ecf1;
	color: #0c5460;
}

.uhulo-status-past_due,
.uhulo-status-unpaid {
	background-color: #f8d7da;
	color: #721c24;
}

.uhulo-status-canceled,
.uhulo-status-incomplete_expired {
	background-color: #e2e3e5;
	color: #383d41;
}

.uhulo-subscription-plans {
	margin-top: 1.5rem;
}

.uhulo-subscription-plans h2 {
	margin-bottom: 0.5rem;
	color: #333;
}

.uhulo-plans-description {
	color: #666;
	margin-bottom: 2rem;
}

.uhulo-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.uhulo-plan-card {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
}

.uhulo-plan-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.uhulo-plan-card.uhulo-plan-featured {
	border: 2px solid #009b52;
}

.uhulo-plan-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: #009b52;
	color: #fff;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

.uhulo-plan-card h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.5rem;
}

.uhulo-plan-price {
	margin-bottom: 1.5rem;
}

.uhulo-price-amount {
	font-size: 2rem;
	font-weight: 600;
	color: #333;
}

.uhulo-plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex-grow: 1;
}

.uhulo-plan-features li {
	padding: 0.5rem 0;
	color: #666;
	position: relative;
	padding-left: 1.5rem;
}

.uhulo-plan-features li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
}

.uhulo-subscribe-button {
	margin-top: auto;
}

.uhulo-subscribe-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.uhulo-billing-sections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 1.5rem;
}

.uhulo-billing-info {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.uhulo-billing-info h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #333;
}

.uhulo-billing-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.uhulo-billing-details p {
	margin: 0;
	color: #666;
}

.uhulo-billing-details code {
	background: #f5f5f5;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.9rem;
}

.uhulo-billing-actions {
	margin-top: 1.5rem;
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.uhulo-cancellation-notice {
	color: #856404;
	background-color: #fff3cd;
	padding: 1rem;
	border-radius: 4px;
	border-left: 4px solid #ffc107;
	margin: 0;
}

.uhulo-inline-payment {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 2rem;
}

.uhulo-inline-payment h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #333;
}

.uhulo-card-element {
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 1rem;
	background: #fff;
}

.uhulo-card-errors {
	color: #c33;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	min-height: 1.5rem;
}

.uhulo-button-secondary {
	background-color: #6c757d;
	color: #fff;
	margin-left: 0.5rem;
}

.uhulo-button-secondary:hover {
	background-color: #5a6268;
}

/* Invoices Page Styles */
.uhulo-page-invoices {
	padding: 2rem 0;
}

.uhulo-invoices-table-wrapper {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
}

.uhulo-invoices-table {
	width: 100%;
	border-collapse: collapse;
}

.uhulo-invoices-table thead {
	background-color: #f8f9fa;
}

.uhulo-invoices-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #333;
	border-bottom: 2px solid #e0e0e0;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.uhulo-invoices-table td {
	padding: 1rem;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
}

.uhulo-invoices-table tbody tr:hover {
	background-color: #f8f9fa;
}

.uhulo-invoices-table tbody tr:last-child td {
	border-bottom: none;
}

.uhulo-invoice-status {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: capitalize;
}

.uhulo-invoice-status-paid {
	background-color: #d4edda;
	color: #155724;
}

.uhulo-invoice-status-open {
	background-color: #fff3cd;
	color: #856404;
}

.uhulo-invoice-status-void {
	background-color: #e2e3e5;
	color: #383d41;
}

.uhulo-invoice-status-uncollectible {
	background-color: #f8d7da;
	color: #721c24;
}

/* Admin Users Page */
.uhulo-page-admin-users {
	padding: 2rem 0;
}

.uhulo-admin-users-table-wrapper {
	background: #fff;
	border-radius: 8px;
	overflow-x: auto;
	overflow-y: visible;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 1.5rem;
	max-width: 100%;
}

.uhulo-admin-users-table {
	width: 100%;
	border-collapse: collapse;
}

.uhulo-admin-users-table thead {
	background-color: #f8f9fa;
}

.uhulo-admin-users-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #333;
	border-bottom: 2px solid #e0e0e0;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.uhulo-admin-users-table td {
	padding: 1rem;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
	vertical-align: middle;
}

.uhulo-admin-users-table tbody tr:hover {
	background-color: #f8f9fa;
}

.uhulo-admin-users-table tbody tr:last-child td {
	border-bottom: none;
}

.uhulo-user-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.uhulo-button-small {
	padding: 0.4rem 0.8rem;
	font-size: 0.875rem;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s;
	text-decoration: none;
	display: inline-block;
}

.uhulo-button-small.uhulo-button-danger {
	background-color: #dc3545;
	color: #fff;
}

.uhulo-button-small.uhulo-button-danger:hover {
	background-color: #c82333;
}

.uhulo-status-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: capitalize;
}

.uhulo-status-confirmed {
	background-color: #d4edda;
	color: #155724;
}

.uhulo-status-unconfirmed {
	background-color: #f8d7da;
	color: #721c24;
}

.uhulo-status-active {
	background-color: #d4edda;
	color: #155724;
}

.uhulo-status-none {
	background-color: #e2e3e5;
	color: #383d41;
}

.uhulo-status-manual {
	background-color: #fff3cd;
	color: #856404;
}

.uhulo-status-paid {
	background-color: #d1ecf1;
	color: #0c5460;
}

.uhulo-subscription-required {
	padding: 4rem 2rem;
	text-align: center;
}

.uhulo-subscription-required-message {
	background: #fff;
	border-radius: 12px;
	padding: 3rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

.uhulo-subscription-required-message h2 {
	margin-top: 0;
	color: #333;
	font-size: 2rem;
}

.uhulo-subscription-required-message p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1rem;
}

.uhulo-paid-subscription-note {
	display: block;
	padding: 0.5rem;
	background-color: #fff3cd;
	border-radius: 4px;
}

.uhulo-free-user-limits {
	background-color: #e7f3ff;
	border-left: 4px solid #009b52;
	padding: 1rem;
	margin-bottom: 1.5rem;
	border-radius: 4px;
}

.uhulo-free-user-limits p {
	margin: 0.5rem 0;
	color: #333;
}

.uhulo-limit-reached {
	color: #dc3545;
	font-weight: 600;
}

.uhulo-limit-notice {
	color: #856404;
	font-weight: 500;
}

.uhulo-button-disabled {
	display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #6c757d;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: not-allowed;
}

/* Admin Dashboard */
.uhulo-page-admin-dashboard {
	padding: 2rem 0;
}

.uhulo-admin-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.uhulo-stat-card {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	border: 1px solid #e0e0e0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uhulo-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.uhulo-stat-icon {
	font-size: 3rem;
	line-height: 1;
}

.uhulo-stat-content {
	flex: 1;
}

.uhulo-stat-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.uhulo-stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
}

.uhulo-admin-dashboard-actions {
	margin-top: 2rem;
	text-align: center;
}

/* Footer Referral Logo */
.uhulo-footer-logo {
	width: 100%;
	display: flex;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: space-between;
	padding: 20px 0px;
}

.uhulo-referral-logo {
	display: inline-block;
	text-decoration: none;
	color: #666;
	transition: color 0.3s ease;
	font-size: 0.9rem;
}

.uhulo-referral-logo:hover {
	color: #009b52;
	text-decoration: none;
}

.uhulo-referral-logo .uhulo-logo-text {
	display: inline-block;
}

.uhulo-referral-logo strong {
	color: #009b52;
	font-weight: 600;
}

/* Home Page Layout */
.uhulo-home-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 2rem;
	margin-top: 2rem;
}

@media (max-width: 968px) {
	.uhulo-home-layout {
		grid-template-columns: 1fr;
	}
}

.uhulo-home-main {
	min-width: 0;
}

.uhulo-home-sidebar {
	min-width: 0;
}

.uhulo-questions-feed h2,
.uhulo-activities-widget h2 {
	margin: 0 0 1.5rem 0;
	font-size: 1.5rem;
	color: #333;
}

.uhulo-questions-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.uhulo-question-card {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.uhulo-question-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.uhulo-question-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
	gap: 1rem;
}

.uhulo-question-header h3 {
	margin: 0;
	flex: 1;
}

.uhulo-question-header h3 a {
	color: #333;
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.uhulo-question-header h3 a:hover {
	color: #009b52;
}

.uhulo-question-type {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #f0f0f0;
	border-radius: 4px;
	font-size: 0.85rem;
	color: #666;
	white-space: nowrap;
}

.uhulo-question-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	font-size: 0.9rem;
	color: #999;
}

.uhulo-question-author {
	font-weight: 500;
}

.uhulo-question-stats {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.uhulo-separator {
	color: #ccc;
}

.uhulo-question-date {
	margin-left: auto;
}

/* Activities Widget */
.uhulo-activities-widget {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	margin-bottom: 1.5rem;
}

.uhulo-activities-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.uhulo-activity-item {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.uhulo-activity-item:last-child {
	border-bottom: none;
}

.uhulo-activity-icon {
	font-size: 1.5rem;
	line-height: 1;
	flex-shrink: 0;
}

.uhulo-activity-content {
	flex: 1;
	min-width: 0;
}

.uhulo-activity-title {
	margin: 0 0 0.25rem 0;
	font-size: 0.95rem;
}

.uhulo-activity-title a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.uhulo-activity-title a:hover {
	color: #009b52;
}

.uhulo-activity-author {
	margin: 0 0 0.25rem 0;
	font-size: 0.85rem;
	color: #999;
}

.uhulo-activity-date {
	margin: 0;
	font-size: 0.8rem;
	color: #999;
}

/* Quick Actions */
.uhulo-quick-actions {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
}

.uhulo-quick-actions h3 {
	margin: 0 0 1rem 0;
	font-size: 1.1rem;
	color: #333;
}

.uhulo-quick-actions .uhulo-button,
.uhulo-quick-actions .uhulo-button-secondary {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 0.75rem;
}

.uhulo-quick-actions .uhulo-button:last-child,
.uhulo-quick-actions .uhulo-button-secondary:last-child {
	margin-bottom: 0;
}

.uhulo-no-users {
	text-align: center;
	padding: 2rem;
	color: #666;
}

.uhulo-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.uhulo-pagination-info {
	color: #666;
}

@media (max-width: 768px) {
	.uhulo-plans-grid {
		grid-template-columns: 1fr;
	}
	
	.uhulo-plan-card {
		padding: 1.5rem;
	}
	
	.uhulo-billing-sections {
		grid-template-columns: 1fr;
	}
	
	.uhulo-invoices-table-wrapper {
		overflow-x: auto;
	}
	
	.uhulo-invoices-table {
		min-width: 600px;
	}
	
	.uhulo-invoices-table th,
	.uhulo-invoices-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.9rem;
	}
	
	.uhulo-admin-users-table-wrapper {
		overflow-x: auto;
	}
	
	.uhulo-admin-users-table {
		min-width: 800px;
	}
	
	.uhulo-admin-users-table th,
	.uhulo-admin-users-table td {
		padding: 0.75rem 0.5rem;
		font-size: 0.9rem;
	}
	
	.uhulo-user-actions {
		flex-direction: column;
	}
}

