.wc-bookings-home-detail {
	margin: 20px 0;
	border: 1px solid #d7d7d7;
	background: #efefef;
}

.wc-bookings-home-detail__header {
	padding: 8px 14px;
	background: linear-gradient(180deg, #5f8fff 0%, #2f6cff 100%);
	color: #fff;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
}

.wc-bookings-home-detail__tabs {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	background: #ececec;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.wc-bookings-home-detail__tab {
	background: transparent;
	border: 0;
	border-right: 1px solid #cfcfcf;
	padding: 8px 4px 10px;
	min-height: 54px;
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wc-bookings-home-detail__tab:last-child {
	border-right: 0;
}

.wc-bookings-home-detail__tab-date {
	font-size: 16px;
	color: #000;
}

.wc-bookings-home-detail__tab-weekday {
	font-size: 14px;
	color: #333;
}

.wc-bookings-home-detail__tab-weekday.is-weekend {
	color: #003dff;
}

.wc-bookings-home-detail__tab.is-active .wc-bookings-home-detail__tab-date,
.wc-bookings-home-detail__tab.is-active .wc-bookings-home-detail__tab-weekday {
	color: #003dff;
	font-weight: 700;
}

.wc-bookings-home-detail__state {
	padding: 10px 16px;
	color: #555;
	font-size: 14px;
}

.wc-bookings-home-detail__state.is-hidden {
	display: none;
}

.wc-bookings-home-detail__body {
	display: grid;
	grid-template-columns: 86px 1fr;
	min-height: 188px;
}

.wc-bookings-home-detail__time-col {
	background: #f6f6f6;
	border-right: 1px solid #d0d0d0;
}

.wc-bookings-home-detail__time-item {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 33px;
	line-height: 1.2;
	color: #111;
	padding: 12px 6px;
	border-bottom: 1px solid #ddd;
}

.wc-bookings-home-detail__content-col {
	background: #e7e7e7;
}

.wc-bookings-home-detail__empty {
	padding: 20px 8px;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
	color: #666;
}

@media (max-width: 1024px) {
	.wc-bookings-home-detail__header {
		font-size: 22px;
	}

	.wc-bookings-home-detail__time-item {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.wc-bookings-home-detail__tabs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.wc-bookings-home-detail__body {
		grid-template-columns: 72px 1fr;
	}

	.wc-bookings-home-detail__tab-date {
		font-size: 13px;
	}

	.wc-bookings-home-detail__tab-weekday {
		font-size: 12px;
	}

	.wc-bookings-home-detail__time-item {
		font-size: 18px;
		min-height: 60px;
	}
}
