.wp-block-tixfox-event-button {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.tixfox-event-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.4;
}

.tixfox-event-button:active {
	transform: scale(0.97);
}

.tixfox-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.tixfox-modal.active {
	display: flex;
}

.tixfox-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	height: 90vh;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.tixfox-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.tixfox-modal-close:hover {
	background: rgba(0, 0, 0, 0.7);
}

.tixfox-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

.tixfox-loader-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(234, 88, 12, 0.2);
	border-top-color: #ea580c;
	border-radius: 50%;
	animation: tixfox-spin 0.8s linear infinite;
}

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

.tixfox-modal-iframe {
	width: 100%;
	height: 100%;
	border: none;
}
