/* Voxfor Secure Live Chat - Admin Settings Styles */

.voxfseli-working-hours {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.voxfseli-day-schedule {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 4px;
}

.voxfseli-day-label {
	min-width: 80px;
	font-weight: 500;
}

.voxfseli-day-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
}

.voxfseli-time-inputs {
	display: flex;
	align-items: center;
	gap: 5px;
}

.voxfseli-time-inputs input {
	width: 80px;
	padding: 4px 8px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.voxfseli-settings-section {
	margin-bottom: 30px;
	background: #fff;
	padding: 20px;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
}

.voxfseli-settings-section h3 {
	margin: 0 0 15px 0;
	font-size: 16px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.voxfseli-setting-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.voxfseli-setting-row:last-child {
	border-bottom: none;
}

.voxfseli-setting-label {
	font-weight: 500;
	color: #333;
}

.voxfseli-setting-description {
	font-size: 13px;
	color: #666;
	margin-top: 3px;
}

.voxfseli-setting-control {
	min-width: 200px;
}

.voxfseli-color-picker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.voxfseli-color-preview {
	width: 30px;
	height: 30px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.voxfseli-toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.voxfseli-toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.voxfseli-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 24px;
}

.voxfseli-toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .voxfseli-toggle-slider {
	background-color: #007cba;
}

input:checked + .voxfseli-toggle-slider:before {
	transform: translateX(26px);
}

.voxfseli-widget-preview {
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 4px;
}

.voxfseli-widget-preview h4 {
	margin: 0 0 10px 0;
	color: #333;
}

.voxfseli-preview-launcher {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-size: 24px;
	margin: 10px 0;
}

.voxfseli-offline-message {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	color: #856404;
	padding: 15px;
	border-radius: 4px;
	margin-top: 15px;
}

.voxfseli-import-export {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 20px;
	margin-top: 20px;
}

.voxfseli-import-export h4 {
	margin: 0 0 15px 0;
}

.voxfseli-export-section,
.voxfseli-import-section {
	margin-bottom: 20px;
}

.voxfseli-export-section:last-child,
.voxfseli-import-section:last-child {
	margin-bottom: 0;
}

.voxfseli-file-upload {
	border: 2px dashed #ddd;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
	margin: 10px 0;
	transition: all 0.3s ease;
}

.voxfseli-file-upload:hover,
.voxfseli-file-upload.drag-over {
	border-color: #007cba;
	background: #f7f7f7;
}

.voxfseli-advanced-options {
	margin-top: 30px;
}

.voxfseli-advanced-toggle {
	background: none;
	border: none;
	color: #007cba;
	cursor: pointer;
	text-decoration: underline;
	font-size: 14px;
}

.voxfseli-advanced-content {
	display: none;
	margin-top: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 4px;
}

.voxfseli-advanced-content.open {
	display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
	.voxfseli-setting-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.voxfseli-setting-control {
		min-width: auto;
		width: 100%;
	}
	
	.voxfseli-day-schedule {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.voxfseli-time-inputs {
		width: 100%;
		justify-content: space-between;
	}
} 