.demo-container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.demo-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}

.demo-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.demo-btn.success {
	background: #26B99A;
	color: white;
}

.demo-btn.danger {
	background: #E74C3C;
	color: white;
}

.demo-btn.warning {
	background: #F39C12;
	color: white;
}

.demo-btn.info {
	background: #3498DB;
	color: white;
}

.demo-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* jQuery Confirm Plugin Styles */
.jquery-confirm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
	backdrop-filter: blur(2px);
}

.jquery-confirm-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	min-width: 400px;
	max-width: 90vw;
	animation: confirmSlideIn 0.3s ease-out;
}

@keyframes confirmSlideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.jquery-confirm-header {
	padding: 20px 25px 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 12px;
}

.jquery-confirm-icon {
	font-size: 20px;
	width: 24px;
	text-align: center;
}

.jquery-confirm-title {
	font-size: 18px;
	font-weight: 600;
	color: #2A3F5F;
	margin: 0;
}

.jquery-confirm-body {
	padding: 25px;
	color: #666;
	line-height: 1.6;
	font-size: 14px;
}

.jquery-confirm-footer {
	padding: 15px 25px 25px;
	text-align: right;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.jquery-confirm-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 80px;
}

.jquery-confirm-btn.confirm {
	background: #26B99A;
	color: white;
}

.jquery-confirm-btn.cancel {
	background: #95A5A6;
	color: white;
}

.jquery-confirm-btn.danger {
	background: #E74C3C;
	color: white;
}

.jquery-confirm-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.jquery-confirm-btn:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(38, 185, 154, 0.3);
}

/* Type specific styles */
.jquery-confirm-modal.success .jquery-confirm-icon {
	color: #26B99A;
}

.jquery-confirm-modal.error .jquery-confirm-icon {
	color: #E74C3C;
}

.jquery-confirm-modal.warning .jquery-confirm-icon {
	color: #F39C12;
}

.jquery-confirm-modal.info .jquery-confirm-icon {
	color: #3498DB;
}

.code-example {
	background: #f8f9fa;
	border-left: 4px solid #26B99A;
	padding: 20px;
	margin: 20px 0;
	border-radius: 4px;
	overflow-x: auto;
}

.code-example pre {
	margin: 0;
	font-family: 'Courier New', monospace;
	font-size: 13px;
	line-height: 1.4;
}

.result-log {
	background: #2A3F5F;
	color: #fff;
	padding: 15px;
	border-radius: 4px;
	margin-top: 20px;
	font-family: 'Courier New', monospace;
	font-size: 13px;
	min-height: 100px;
	overflow-y: auto;
}

.result-log .log-item {
	padding: 5px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-log .log-item:last-child {
	border-bottom: none;
}

.result-log .timestamp {
	color: #26B99A;
	font-weight: bold;
}