.gth-flat-wrapper {
	width: 100%;
	border-radius: 20px;
	padding: 0;
	box-sizing: border-box;
}

.gth-flat-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.gth-flat-tab {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1.5px solid #e0ddd8;
	background: transparent;
	color: #3d3929;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.3;
}

.gth-flat-tab:hover {
	border-color: #b0aaa0;
	background: rgba(0, 0, 0, 0.03);
}

.gth-flat-tab.gth-flat-tab-active {
	background: #7c3aed;
	color: #fff;
	border-color: #7c3aed;
}

.gth-flat-panel {
	display: none;
}

.gth-flat-panel.gth-flat-panel-active {
	display: block;
}

.gth-flat-slot {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	background: #faf8f5;
	border-radius: 10px;
	margin-bottom: 8px;
	gap: 16px;
	transition: box-shadow 0.15s ease;
}

.gth-flat-slot:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gth-flat-time {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 58px;
	font-family: "JetBrains Mono", "SF Mono", "Fira Code", "Consolas", monospace;
	font-size: 14px;
	font-weight: 400;
	color: #6b6355;
	line-height: 1.25;
	flex-shrink: 0;
}

.gth-flat-time-sep {
	font-size: 11px;
	color: #b0a99e;
	line-height: 1;
}

.gth-flat-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.gth-flat-title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1612;
	line-height: 1.2;
}

.gth-flat-coach {
	font-size: 13px;
	color: #9a9084;
	font-weight: 400;
	line-height: 1.2;
}

.gth-flat-tag {
	flex-shrink: 0;
	margin-left: auto;
}

.gth-flat-tag span {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1.5px solid #e0ddd8;
	background: #fff;
	font-size: 12px;
	font-weight: 500;
	color: #3d3929;
	white-space: nowrap;
}

.gth-flat-action {
	flex-shrink: 0;
	margin-left: auto;
}

.gth-flat-booking {
	display: inline-block;
	border-radius: 999px;
	padding: 7px 12px;
	background: #111827;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
}

.gth-flat-booking:hover {
	background: #1f2937;
	color: #fff;
}

.gth-flat-empty {
	padding: 24px 16px;
	text-align: center;
	color: #b0a99e;
	font-size: 15px;
	border-radius: 14px;
}

@media (max-width: 640px) {
	.gth-flat-wrapper {
		padding: 0;
		border-radius: 0;
	}

	.gth-flat-slot {
		flex-wrap: wrap;
		gap: 8px 12px;
		padding: 12px;
	}

	.gth-flat-time {
		flex-direction: row;
		gap: 4px;
		min-width: auto;
	}

	.gth-flat-action {
		margin-left: 0;
	}
}
