/* ──────────────────────────────────────────────────────────
   1) HEADER
────────────────────────────────────────────────────────── */
.reception-header {
	background-color: #013f7d;
	/* #0066cc; */
	color: white;
	padding: 8px 10px 0;
	text-align: center;
	position: relative;
	/* margin-top: 43px; */
	margin-left: 150px;
}

.reception-title {
	margin: 5px 0 0;
	font-size: 26px;
	padding-bottom: 10px;
	font-weight: 100;
	text-align: center;
	margin-left: 120px;
}

.reception-user {
	position: absolute;
	background: none;
	top: 8px;
	right: 20px;
	font-weight: bold;
	font-size: 24px;
}

/* ──────────────────────────────────────────────────────────
   2) TOP “HORIZONTAL” TABS
────────────────────────────────────────────────────────── */
.reception-tabs {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.reception-tab {
	background-color: #f4f4f4e2;
	border: 1px solid #999;
	border-bottom: none;
	margin-right: 4px;
	padding: 6px 12px;
	cursor: pointer;
	color: #003366;
	box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.1);
	transition: background 0.2s;
	font-weight: 100;
	font-size: 14px;
	border-radius: 10px 10px 0 0;
}

.reception-tab:hover {
	background-color: goldenrod;
}

/* Add left margin to content following reception-header to account for left navbar */
/* .reception-header+div {
	margin-left: 150px;
} */

.reception-tab.active {
	background-color: #f4f4f4;
	color: navy;
	font-weight: 600;
	box-shadow: none;
	font-size: 14px;
	text-shadow: gray 2px 2px 4px;
}

/* ──────────────────────────────────────────────────────────
   3) LAYOUT
────────────────────────────────────────────────────────── */
.reception-container {
	display: flex;
	height: calc(100vh - 100px);
	background: none !important;
	margin-left: 150px;
	/* Account for fixed left navbar width */
}

.wip-container {
	display: flex;
	height: calc(100vh - 210px);
	background: none !important;
	margin-left: 150px;
	/* Account for fixed left navbar width */
}


.reception-right-panel {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 10px;
	/* background-color: #f4f4f4; */
	/* z-index: 1;
	min-height: 0;
	overflow: hidden; */
}

.search-bar {
	flex-shrink: 0;
	padding-bottom: 0px;
}

/* Use your top wrapper as the layout container */
.m-4 {
	display: flex;
	flex-direction: column;
	height: 100vh;
	/* full viewport */
	overflow: hidden;
	/* contain scrolling below */
}

/* THIS is the only scrolling region */
.table-scroll-container {
	flex: 1 1 auto;
	/* take remaining space */
	min-height: 0;
	/* allow shrinking so it can scroll */
	overflow: auto;
	/* vertical & horizontal if needed */
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	/* display: flex;
	flex-direction: column; */
}

/* ──────────────────────────────────────────────────────────
   5) MISCELLANEOUS
────────────────────────────────────────────────────────── */
.search-bar {
	margin-bottom: 10px;
}

.search-bar input,
.search-bar select {
	padding: 2px 6px;
	font-size: 12px !important;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.search-bar input:focus,
.search-bar select:focus {
	outline: none;
	border-color: goldenrod;
	border-radius: 0 20px 20px 0;
	box-shadow: 0 0 3px rgba(218, 165, 32, 0.5);
}

.open-customer-link {
	text-decoration: none;
	color: #007bff;
}

.row-button {
	/* start with no native look */
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #007bff;
	border-radius: 10%;
	margin: 0px;
	cursor: pointer;
	padding: 2px;
	font-size: 12px;
}

/* the inner dot when checked */
.row-button:hover {
	background-color: goldenrod;
}

.open-btn {
	margin-left: 10px;
	padding: 4px 8px;
	background-color: #0066cc;
	color: white;
	border: none;
	cursor: pointer;
}

.icon-btn {
	display: flex;
	background-color: transparent;
	color: white;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 5px;
}

.icon-btn:hover {
	background-color: goldenrod !important;
	color: white;
	border: none;
	cursor: pointer;
}

.customer-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	background: white;
	font-size: 12px;
	overflow: auto;
	/* flex: 1; */
}

.customer-table th,
.customer-table td {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.customer-table td[title] {
	cursor: help;
}

.customer-table th {
	cursor: pointer;
}

.customer-table tbody tr {
	transition: display 0.2s ease;
	/* Smooth transition for hiding/showing rows */
}

.cid-button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 2px 8px;
	font-size: 13px;
	border-radius: 4px;
	cursor: pointer;
}

.cid-button:hover {
	background-color: #0056b3;
}

.customer-table th {
	background-color: #0073e6;
	color: white;
	position: sticky;
	top: 0;
	z-index: 10;
}

.customer-table td.balance {
	font-weight: bold;
	color: yellow;
	background-color: darkred;
	text-align: right;
}

.clickable-row {
	cursor: pointer;
	background-color: white;
}

.clickable-row:hover {
	background-color: #f0f8ff;
}

.vehicle-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	background: white;
	font-size: 12px;
	overflow: auto;
}

.vehicle-table th,
.vehicle-table td {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vehicle-table td[title] {
	cursor: help;
}

.vehicle-table th {
	cursor: pointer;
	background-color: #0073e6;
	color: white;
	position: sticky;
	top: 0;
	z-index: 10;
}

.vehicle-table tbody tr {
	transition: display 0.2s ease;
}

.vehicle-table tbody tr:hover {
	background-color: #f0f8ff;
}