.reservations-split {
	display: grid;
	grid-template-columns: 440px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.res-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: sticky;
	top: 88px;
	max-height: calc(100vh - 110px);
	overflow-y: auto;
	padding-right: 4px;
}

.res-list-item {
	display: grid;
	grid-template-columns: 78px 1fr 16px;
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--bg-1);
	cursor: pointer;
	font-family: inherit;
	color: var(--fg);
	text-align: left;
	transition:
		border-color 0.15s,
		transform 0.12s,
		background 0.15s;
}
.res-list-item:hover {
	border-color: var(--border-2);
}
.res-list-item.selected {
	border-color: var(--accent);
	background: linear-gradient(180deg, var(--glow-accent-soft), transparent), var(--bg-1);
	box-shadow: 0 0 0 3px rgba(142, 93, 216, 0.12);
}
.res-list-item.status-pending {
	background: linear-gradient(180deg, rgba(216, 165, 80, 0.06), transparent), var(--bg-1);
}

.rli-time {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-right: 1px dashed var(--border);
	padding-right: 14px;
}
.rli-time-v {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--fg);
	line-height: 1;
}
.rli-duration {
	font-size: 10.5px;
	color: var(--fg-mute);
	margin-top: 6px;
	letter-spacing: 0.04em;
}
.rli-body {
	min-width: 0;
}
.rli-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
}
.rli-guest {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.rli-party {
	font-size: 12px;
	color: var(--fg-dim);
	flex-shrink: 0;
}
.rli-row.sub {
	margin-top: 6px;
	font-size: 11px;
	color: var(--fg-mute);
	gap: 10px;
}
.rli-table {
	font-variant-numeric: tabular-nums;
	color: var(--fg-dim);
}
.rli-note em {
	font-style: italic;
	color: var(--accent);
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	max-width: 180px;
	vertical-align: bottom;
}
.rli-tail {
	display: grid;
	place-items: center;
}
.status-dot-large {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.status-dot-large.status-closed {
	background: oklch(0.55 0.16 145);
	box-shadow: 0 0 0 3px rgba(120, 180, 130, 0.18);
}
.status-dot-large.status-pending {
	background: oklch(0.65 0.14 70);
	box-shadow: 0 0 0 3px rgba(216, 165, 80, 0.22);
}
