/**
 * Feedspace Widgets CSS
 *
 * @package Feedspace
 * @since 1.0.0
 */

/* Widgets Feature Styles */
.feedspace-widgets {
	position: relative;
	width: 100%;
}

.feedspace-widgets .feedspace-embed {
	width: 100%;
	min-height: 200px;
}

/* Admin Styles */
.feedspace-admin .feedspace-form-section {
	margin-bottom: 20px;
}

.feedspace-admin .feedspace-embed-input {
	margin-bottom: 15px;
}

.feedspace-admin .feedspace-embed-input label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}

.feedspace-admin .feedspace-input-wrapper {
	position: relative;
}

.feedspace-admin .feedspace-textarea {
	width: 100%;
	min-height: 120px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: monospace;
	font-size: 13px;
	resize: vertical;
}

.feedspace-admin .feedspace-button-group {
	margin-top: 10px;
}

.feedspace-admin .feedspace-button {
	padding: 8px 16px;
	margin-right: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
}

.feedspace-admin .feedspace-button-primary {
	background-color: #0073aa;
	color: white;
}

.feedspace-admin .feedspace-button-primary:hover {
	background-color: #005a87;
}

.feedspace-admin .feedspace-button-secondary {
	background-color: #f7f7f7;
	color: #555;
	border: 1px solid #ddd;
}

.feedspace-admin .feedspace-button-secondary:hover {
	background-color: #eee;
}

.feedspace-admin .feedspace-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.feedspace-admin .feedspace-preview {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #f9f9f9;
}

.feedspace-admin .feedspace-preview-content {
	width: 100%;
}

.feedspace-admin .feedspace-preview-placeholder {
	text-align: center;
	color: #666;
	font-style: italic;
}

.feedspace-admin .feedspace-message {
	padding: 10px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	border-left: 4px solid;
}

.feedspace-admin .feedspace-message-success {
	background-color: #d4edda;
	border-color: #28a745;
	color: #155724;
}

.feedspace-admin .feedspace-message-error {
	background-color: #f8d7da;
	border-color: #dc3545;
	color: #721c24;
}

.feedspace-admin .feedspace-message-info {
	background-color: #d1ecf1;
	border-color: #17a2b8;
	color: #0c5460;
}

/* Frontend Styles */
.feedspace-widgets {
	margin: 20px 0;
}

.feedspace-widgets .feedspace-embed {
	width: 100%;
}

/* Block Editor Styles */
.wp-block-feedspace-widgets {
	margin: 20px 0;
}

.wp-block-feedspace-widgets .feedspace-embed {
	width: 100%;
	min-height: 200px;
	border: 1px dashed #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f9f9f9;
}

.wp-block-feedspace-widgets .feedspace-embed:empty::before {
	content: 'Feedspace Widget Preview';
	color: #666;
	font-style: italic;
}
