/* Список дат приёма (вместо месячной сетки). Стилистика — как у .cal-day / .time-slot в zapis.css */
.date-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.date-month-title {
	color: white;
	font-family: "SF Pro Display";
	font-size: 17px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.date-chips {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
	gap: 8px;
}
.date-chip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 68px;
	padding: 8px 4px;
	border-radius: 8px;
	background-color: #1c1c1c;
	border: 1px solid #2a2a2a;
	color: #cfcfcf;
	font-family: "SF Pro Display";
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		border 0.25s ease,
		color 0.25s ease;
}
.date-chip .num {
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
}
.date-chip .dow {
	font-size: 11px;
	font-weight: 500;
	color: #6c6c6c;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1;
}
.date-chip:hover {
	background-color: #242424;
	border: 1px solid #6c6c6c;
}
.date-chip.selected {
	background-color: white;
	color: black;
	border: 1px solid white;
}
.date-chip.selected .num {
	font-weight: 600;
}
.date-chip.selected .dow {
	color: #555;
}
.date-chip.has-hearing {
	border-color: #4a3030;
}
.date-chip .hday-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #e05656;
	pointer-events: none;
}
.date-chip.selected .hday-dot {
	background-color: #b03030;
}
.date-note,
.date-empty {
	color: #6c6c6c;
	font-family: "SF Pro Display";
	font-size: 13px;
	line-height: 1.5;
}
.date-empty {
	font-size: 14px;
	color: #adadad;
	padding: 6px 0;
}
