.tmk-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 90px;
	margin: 24px auto;
	max-width: 1200px;
	width: 100%;
	box-sizing: border-box;
}

.tmk-cal-col {
	flex: 0 1 420px;
	max-width: 420px;
	min-width: 280px;
	box-sizing: border-box;
}

.tmk-calendar {
	background: transparent;
	color: #ffffff;
	font-family: inherit;
	box-sizing: border-box;
}

.tmk-calendar * {
	box-sizing: border-box;
}

.tmk-cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.tmk-title {
	text-align: center;
	line-height: 1.35;
}

.tmk-room-name {
	display: block;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 2px;
}

.tmk-month-name {
	display: block;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-transform: capitalize;
}

.tmk-nav {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.4);
	color: #ffffff;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	transition: background 0.15s ease, border-color 0.15s ease;
	flex-shrink: 0;
}

.tmk-nav:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.6);
}

.tmk-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px 6px;
}

.tmk-grid-head {
	margin-bottom: 10px;
	font-size: 13px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.tmk-day {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 46px;
}

.tmk-day.tmk-empty {
	background: transparent;
}

.tmk-day.tmk-free {
	background: #4c9563;
	color: #ffffff;
}

.tmk-day.tmk-booked {
	background: #b3453f;
	color: #ffffff;
}

.tmk-day.tmk-past {
	opacity: 0.4;
}

.tmk-day.tmk-today {
	box-shadow: 0 0 0 2px #e0b64a;
}

.tmk-day.tmk-editable {
	cursor: pointer;
	transition: transform 0.12s ease, filter 0.15s ease;
}

.tmk-day.tmk-editable:hover {
	filter: brightness(1.15);
	transform: scale(1.06);
}

.tmk-day.tmk-loading {
	opacity: 0.4;
	pointer-events: none;
}

.tmk-legend {
	display: flex;
	justify-content: center;
	gap: 22px;
	margin-top: 18px;
	font-size: 13px;
	color: #ffffff;
}

.tmk-legend-item {
	display: flex;
	align-items: center;
	gap: 7px;
}

.tmk-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	display: inline-block;
}

.tmk-dot-free {
	background: #4c9563;
}

.tmk-dot-booked {
	background: #b3453f;
}

.tmk-today-btn {
	display: block;
	width: 100%;
	margin-top: 16px;
	padding: 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.35);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.tmk-today-btn:hover {
	background: rgba(255,255,255,0.14);
	border-color: rgba(255,255,255,0.55);
}

.tmk-admin-wrap .tmk-wrap {
	margin: 20px 0;
	justify-content: flex-start;
	gap: 40px;
}

.tmk-admin-wrap .tmk-cal-col {
	flex: 1 1 420px;
}

.tmk-admin-wrap .tmk-calendar {
	background: #14161a;
	border: 1px solid #2a2d33;
	border-radius: 12px;
	padding: 18px;
}

@media (max-width: 960px) {
	.tmk-wrap {
		gap: 50px;
	}
	.tmk-cal-col {
		flex: 1 1 100%;
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.tmk-day {
		font-size: 13px;
		max-width: 38px;
	}
	.tmk-month-name {
		font-size: 18px;
	}
}
