.tixfox-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

.tixfox-error {
	padding: 15px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
}

.tixfox-events-panel {
	max-height: 600px;
	overflow-y: auto;
}

.tixfox-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid #ddd;
	margin-bottom: 15px;
}

.tixfox-tab {
	flex: 1;
	padding: 8px 12px;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	font-size: 13px;
	font-weight: 500;
	color: #757575;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: -2px;
}

.tixfox-tab:hover {
	color: #2271b1;
	background: #f0f6fc;
}

.tixfox-tab.active {
	color: #2271b1;
	border-bottom-color: #2271b1;
}

.tixfox-tab-content {
	padding-top: 10px;
}

.tixfox-empty-state {
	text-align: center;
	padding: 40px 20px;
}

.tixfox-empty-state h4 {
	margin: 0 0 10px 0;
	font-size: 15px;
	font-weight: 600;
	color: #1e1e1e;
}

.tixfox-empty-state p {
	color: #757575;
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 1.5;
}

.tixfox-empty-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.tixfox-cta {
	display: inline-block;
	padding: 8px 16px;
	background: #ea580c;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: background 0.2s;
	border: none;
}

.tixfox-cta:hover {
	background: #c2410c;
}

.tixfox-refresh {
	padding: 6px 14px;
	background: #f0f0f0;
	color: #757575;
	border: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.tixfox-refresh:hover {
	background: #e0e0e0;
	color: #1e1e1e;
}

.tixfox-events-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tixfox-event-item {
	display: flex;
	gap: 10px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
}

.tixfox-event-item:hover {
	border-color: #2271b1;
	background: #f0f6fc;
}

.tixfox-event-item.selected {
	border-color: #2271b1;
	background: #e7f5fe;
	border-width: 2px;
}

.tixfox-event-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.tixfox-event-info {
	flex: 1;
	min-width: 0;
}

.tixfox-event-info h5 {
	margin: 0 0 5px 0;
	font-size: 13px;
	font-weight: 600;
	color: #1e1e1e;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tixfox-event-info p {
	margin: 0;
	font-size: 12px;
	color: #757575;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tixfox-event-date {
	font-weight: 500;
}

.tixfox-button-preview {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
	background: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.tixfox-button-hint {
	margin: 0;
	font-size: 12px;
	color: #757575;
}
