/**
 * BGE AI Tools - Frontend Styles
 *
 * @package NELSONS_Membership
 * @subpackage AI_Assistant
 * @since 2.0.0
 */

/* ==========================================================================
   Dashboard Container
   ========================================================================== */

.nd-ai-tools-dashboard {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ==========================================================================
   Header
   ========================================================================== */

.nd-ai-tools-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border-radius: 12px;
	margin-bottom: 30px;
	color: #fff;
}

.nd-ai-tools-header h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
}

.nd-ai-tools-header h2 .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}

.nd-ai-tools-subtitle {
	margin: 5px 0 0 0;
	opacity: 0.9;
	font-size: 14px;
}

.nd-ai-tools-stats {
	display: flex;
	gap: 20px;
}

.nd-ai-stat {
	text-align: center;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.nd-ai-stat-value {
	display: block;
	font-size: 24px;
	font-weight: 700;
}

.nd-ai-stat-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.9;
}

/* ==========================================================================
   Tool Grid
   ========================================================================== */

.nd-ai-tools-category {
	margin-bottom: 30px;
}

.nd-ai-category-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}

.nd-ai-tools-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

/* ==========================================================================
   Tool Card
   ========================================================================== */

.nd-ai-tool-card {
	position: relative;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

.nd-ai-tool-card:hover {
	border-color: #c08411;
	box-shadow: 0 4px 20px rgba(192, 132, 17, 0.15);
	transform: translateY(-2px);
}

.nd-ai-tool-card.nd-ai-tool-locked {
	opacity: 0.7;
}

.nd-ai-tool-card.nd-ai-tool-locked:hover {
	border-color: #e0e0e0;
	transform: none;
	box-shadow: none;
}

.nd-ai-tool-lock-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nd-ai-tool-lock-badge .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	color: #666;
}

.nd-ai-tool-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.nd-ai-tool-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #fff;
}

.nd-ai-tool-info {
	flex: 1;
}

.nd-ai-tool-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0 0 8px 0;
}

.nd-ai-tool-description {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.nd-ai-tool-meta {
	margin: 16px 0;
}

.nd-ai-tool-uses {
	display: inline-block;
	font-size: 12px;
	color: #666;
	padding: 4px 10px;
	background: #f5f5f5;
	border-radius: 20px;
}

.nd-ai-tool-uses.nd-ai-unlimited {
	background: #e8f5e9;
	color: #2e7d32;
}

.nd-ai-tool-tier-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	background: #fff3e0;
	color: #e65100;
	border-radius: 20px;
}

.nd-ai-tool-launch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 12px 20px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nd-ai-tool-launch:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(192, 132, 17, 0.3);
}

.nd-ai-tool-launch .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.nd-ai-tool-upgrade {
	display: block;
	text-align: center;
	padding: 12px 20px;
	background: #f5f5f5;
	border-radius: 8px;
	color: #666;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.nd-ai-tool-upgrade:hover {
	background: #e0e0e0;
	color: #333;
}

/* ==========================================================================
   Workspace
   ========================================================================== */

.nd-ai-tool-workspace {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
}

.nd-ai-workspace-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	background: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
}

.nd-ai-workspace-back {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	color: #666;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nd-ai-workspace-back:hover {
	border-color: #c08411;
	color: #c08411;
}

.nd-ai-workspace-title {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.nd-ai-workspace-uses {
	font-size: 13px;
	color: #666;
	padding: 6px 12px;
	background: #f0f0f0;
	border-radius: 20px;
}

.nd-ai-workspace-content {
	padding: 30px;
}

/* ==========================================================================
   Tool Form
   ========================================================================== */

.nd-ai-tool-form {
	max-width: 700px;
}

.nd-ai-tool-field {
	margin-bottom: 24px;
}

.nd-ai-tool-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.nd-ai-tool-field label .required {
	color: #e53935;
}

.nd-ai-tool-field input[type="text"],
.nd-ai-tool-field input[type="url"],
.nd-ai-tool-field input[type="number"],
.nd-ai-tool-field textarea,
.nd-ai-tool-field select {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nd-ai-tool-field input:focus,
.nd-ai-tool-field textarea:focus,
.nd-ai-tool-field select:focus {
	outline: none;
	border-color: #c08411;
	box-shadow: 0 0 0 3px rgba(192, 132, 17, 0.1);
}

.nd-ai-tool-field textarea {
	min-height: 120px;
	resize: vertical;
}

.nd-ai-tool-field .description {
	font-size: 12px;
	color: #888;
	margin-top: 6px;
}

/* Checkbox & Radio Groups */
.nd-ai-checkbox-group,
.nd-ai-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.nd-ai-checkbox-inline {
	flex-direction: row;
}

.nd-ai-checkbox-label,
.nd-ai-radio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nd-ai-checkbox-label:hover,
.nd-ai-radio-label:hover {
	border-color: #c08411;
	background: #fff9f0;
}

.nd-ai-checkbox-label input:checked + span,
.nd-ai-radio-label input:checked + span {
	color: #c08411;
}

/* Range Slider */
.nd-ai-range-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nd-ai-range-wrapper input[type="range"] {
	flex: 1;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	outline: none;
	-webkit-appearance: none;
}

.nd-ai-range-wrapper input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background: #c08411;
	border-radius: 50%;
	cursor: pointer;
}

.nd-ai-range-wrapper output,
.nd-ai-range-wrapper o {
	min-width: 60px;
	text-align: right;
	font-weight: 600;
	color: #c08411;
}

/* Character Counter */
.nd-ai-char-counter {
	display: block;
	font-size: 11px;
	color: #888;
	text-align: right;
	margin-top: 4px;
}

.nd-ai-char-counter.nd-ai-char-warning {
	color: #e53935;
}

/* Submit Button */
.nd-ai-tool-actions {
	margin-top: 30px;
}

.nd-ai-tool-submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nd-ai-tool-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(192, 132, 17, 0.3);
}

.nd-ai-tool-submit .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   Results
   ========================================================================== */

.nd-ai-tool-results {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e0e0e0;
}

.nd-ai-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.nd-ai-results-header h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.nd-ai-results-actions {
	display: flex;
	gap: 10px;
}

.nd-ai-btn-copy,
.nd-ai-btn-regenerate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nd-ai-btn-copy:hover,
.nd-ai-btn-regenerate:hover {
	background: #fff;
	border-color: #c08411;
	color: #c08411;
}

.nd-ai-btn-copy.nd-ai-copied {
	background: #e8f5e9;
	border-color: #4caf50;
	color: #2e7d32;
}

.nd-ai-results-content {
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

.nd-ai-results-content h1,
.nd-ai-results-content h2,
.nd-ai-results-content h3 {
	color: #333;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.nd-ai-results-content h1:first-child,
.nd-ai-results-content h2:first-child,
.nd-ai-results-content h3:first-child {
	margin-top: 0;
}

.nd-ai-results-content ul,
.nd-ai-results-content ol {
	padding-left: 24px;
}

.nd-ai-results-content li {
	margin-bottom: 8px;
}

.nd-ai-results-meta {
	margin-top: 15px;
	font-size: 12px;
	color: #888;
}

/* Platform Results (Social Media) */
.nd-ai-platform-result {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.nd-ai-platform-result:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.nd-ai-platform-result h5 {
	font-size: 14px;
	font-weight: 600;
	color: #c08411;
	margin: 0 0 10px 0;
}

/* Error/Limit/Upgrade Messages */
.nd-ai-error-message,
.nd-ai-limit-message,
.nd-ai-upgrade-message {
	text-align: center;
	padding: 30px;
}

.nd-ai-error-message .dashicons,
.nd-ai-limit-message .dashicons,
.nd-ai-upgrade-message .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	margin-bottom: 15px;
}

.nd-ai-error-message .dashicons {
	color: #e53935;
}

.nd-ai-limit-message .dashicons {
	color: #ff9800;
}

.nd-ai-upgrade-message .dashicons {
	color: #c08411;
}

.nd-ai-error-message h4,
.nd-ai-limit-message h4,
.nd-ai-upgrade-message h4 {
	margin: 0 0 10px 0;
}

.nd-ai-upgrade-btn {
	display: inline-block;
	margin-top: 15px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border-radius: 8px;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.nd-ai-tool-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 40px;
	color: #666;
}

.nd-ai-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #e0e0e0;
	border-top-color: #c08411;
	border-radius: 50%;
	animation: nd-ai-spin 0.8s linear infinite;
}

.nd-ai-spinner-large {
	width: 40px;
	height: 40px;
	border-width: 3px;
}

@keyframes nd-ai-spin {
	to {
		transform: rotate(360deg);
	}
}

.nd-ai-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.nd-ai-loading-content {
	text-align: center;
}

.nd-ai-loading-content p {
	margin: 20px 0 5px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.nd-ai-loading-tip {
	font-size: 14px !important;
	font-weight: normal !important;
	color: #888 !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.nd-ai-tools-header {
		flex-direction: column;
		text-align: center;
	}

	.nd-ai-tools-stats {
		width: 100%;
		justify-content: center;
	}

	.nd-ai-tools-list {
		grid-template-columns: 1fr;
	}

	.nd-ai-workspace-header {
		flex-wrap: wrap;
	}

	.nd-ai-workspace-back {
		order: -1;
		width: 100%;
		justify-content: center;
	}

	.nd-ai-workspace-title {
		width: 100%;
		text-align: center;
	}

	.nd-ai-workspace-uses {
		width: 100%;
		text-align: center;
	}

	.nd-ai-workspace-content {
		padding: 20px;
	}

	.nd-ai-checkbox-group,
	.nd-ai-radio-group {
		flex-direction: column;
	}

	.nd-ai-results-header {
		flex-direction: column;
		gap: 15px;
	}

	.nd-ai-results-actions {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   Dark Mode Support
   ========================================================================== */

@media (prefers-color-scheme: dark) {
	.nd-ai-tools-dashboard {
		color: #e0e0e0;
	}

	.nd-ai-tool-card {
		background: #2c2c2c;
		border-color: #444;
	}

	.nd-ai-tool-card:hover {
		border-color: #c08411;
	}

	.nd-ai-tool-name,
	.nd-ai-category-title,
	.nd-ai-workspace-title {
		color: #fff;
	}

	.nd-ai-tool-description {
		color: #aaa;
	}

	.nd-ai-tool-workspace {
		background: #2c2c2c;
		border-color: #444;
	}

	.nd-ai-workspace-header {
		background: #252525;
		border-color: #444;
	}

	.nd-ai-tool-field input,
	.nd-ai-tool-field textarea,
	.nd-ai-tool-field select {
		background: #333;
		border-color: #555;
		color: #fff;
	}

	.nd-ai-checkbox-label,
	.nd-ai-radio-label {
		background: #333;
		border-color: #555;
		color: #ddd;
	}

	.nd-ai-results-content {
		background: #333;
		border-color: #555;
		color: #ddd;
	}
}

/* ==========================================================================
   Shortcode Specific Styles
   ========================================================================== */

.nd-ai-tools-shortcode {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.nd-ai-tools-shortcode .nd-ai-tools-grid {
	display: grid;
	grid-template-columns: repeat(var(--columns, 3), 1fr);
	gap: 20px;
}

@media (max-width: 900px) {
	.nd-ai-tools-shortcode .nd-ai-tools-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.nd-ai-tools-shortcode .nd-ai-tools-grid {
		grid-template-columns: 1fr;
	}
}

/* Stats Bar */
.nd-ai-tools-stats-bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	padding: 15px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 25px;
}

.nd-ai-stats-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #666;
}

.nd-ai-stats-item .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #888;
}

.nd-ai-tier-badge {
	padding: 5px 12px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nd-ai-tier-badge.nd-ai-tier-free {
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.nd-ai-tier-badge.nd-ai-tier-basic {
	background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

/* Category Title */
.nd-ai-tools-shortcode .nd-ai-category-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
}

.nd-ai-category-icon {
	font-size: 24px;
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */

.nd-ai-tool-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.nd-ai-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.nd-ai-modal-content {
	position: relative;
	width: 100%;
	max-width: 800px;
	max-height: 90vh;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: nd-ai-modal-in 0.3s ease;
}

@keyframes nd-ai-modal-in {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.nd-ai-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	background: #f5f5f5;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	z-index: 10;
}

.nd-ai-modal-close:hover {
	background: #e0e0e0;
}

.nd-ai-modal-close .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
	color: #666;
}

.nd-ai-modal-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 24px 20px;
	border-bottom: 1px solid #e0e0e0;
}

.nd-ai-modal-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nd-ai-modal-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #fff;
}

.nd-ai-modal-title-wrap {
	flex: 1;
	min-width: 0;
}

.nd-ai-modal-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin: 0 0 4px 0;
}

.nd-ai-modal-description {
	font-size: 13px;
	color: #666;
	margin: 0;
}

.nd-ai-modal-uses {
	font-size: 12px;
	color: #666;
	padding: 6px 12px;
	background: #f5f5f5;
	border-radius: 20px;
	white-space: nowrap;
}

.nd-ai-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

/* ==========================================================================
   Login Required & Error States
   ========================================================================== */

.nd-ai-login-required,
.nd-ai-error {
	text-align: center;
	padding: 40px 20px;
	background: #f9f9f9;
	border-radius: 12px;
}

.nd-ai-login-required .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: #ccc;
	margin-bottom: 15px;
}

.nd-ai-login-required p {
	font-size: 16px;
	color: #666;
	margin: 0 0 20px 0;
}

.nd-ai-login-btn {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.nd-ai-login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(192, 132, 17, 0.3);
	color: #fff;
}

/* ==========================================================================
   Single Tool (Inline) Styles
   ========================================================================== */

.nd-ai-single-tool.nd-ai-tool-inline {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px;
}

.nd-ai-single-tool .nd-ai-tool-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.nd-ai-single-tool .nd-ai-tool-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nd-ai-single-tool .nd-ai-tool-icon .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #fff;
}

.nd-ai-single-tool .nd-ai-tool-info {
	flex: 1;
}

.nd-ai-single-tool .nd-ai-tool-info h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 6px 0;
}

.nd-ai-single-tool .nd-ai-tool-info p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.nd-ai-single-tool .nd-ai-uses-badge {
	font-size: 12px;
	color: #666;
	padding: 6px 12px;
	background: #f5f5f5;
	border-radius: 20px;
	white-space: nowrap;
}

.nd-ai-tool-locked-message,
.nd-ai-tool-limit-message {
	text-align: center;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
}

.nd-ai-tool-locked-message .dashicons,
.nd-ai-tool-limit-message .dashicons {
	font-size: 40px;
	width: 40px;
	height: 40px;
	color: #aaa;
	margin-bottom: 10px;
}

.nd-ai-tool-locked-message p,
.nd-ai-tool-limit-message p {
	margin: 0 0 15px 0;
	color: #666;
}

.nd-ai-upgrade-btn {
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(135deg, #c08411 0%, #000000 100%);
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
	.nd-ai-tools-shortcode,
	.nd-ai-tools-dashboard {
		display: none !important;
	}
}