/* Content area uses more width and is responsive */
/* Content area nearly edge-to-edge */
.content {
	flex: 1;
	padding: 32px 10px 32px 10px;
	min-width: 0;
	max-width: 100vw;
	box-sizing: border-box;
}
@media (max-width: 900px) {
	.content { padding: 20px 5vw; }
}
@media (max-width: 900px) {
	.content { padding: 20px 10px; }
}
table.customers-table th, table.customers-table td {
	padding: 16px 18px;
	border: 1px solid #eee;
	text-align: left;
	font-size: 1.08em;
	word-break: break-word;
}
table.customers-table {
	width: 100%;
	max-width: 100vw;
	table-layout: auto;
}

body { font-family: 'Segoe UI', Arial, sans-serif; background: #f4f6fb; margin: 0; }
.admin-layout { display: flex; min-height: 100vh; }
.sidebar {
	width: 270px;
	background: linear-gradient(135deg, #43c6ac 0%, #191654 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 18px 0 0 0;
	box-shadow: 2px 0 8px rgba(67,198,172,0.08);
	min-height: 100vh;
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.sidebar .logo {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 18px;
	letter-spacing: 1px;
	color: #f8ffae;
	text-align: center;
}
.sidebar nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
}
.sidebar nav a {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 12px 28px;
	color: #fff;
	text-decoration: none;
	font-size: 1.08em;
	border-radius: 8px 0 0 8px;
	transition: background 0.2s, color 0.2s;
	position: relative;
	font-weight: 500;
	letter-spacing: 0.5px;
	overflow: hidden;
}
.sidebar nav a .icon {
	font-size: 1.3em;
	width: 24px;
	text-align: center;
}
.sidebar nav a:hover, .sidebar nav a.active {
	background: #f8ffae;
	color: #191654;
	box-shadow: none;
	z-index: 11;
}
.sidebar nav a.active::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background: #191654;
	border-radius: 2px;
	box-shadow: none;
	z-index: 12;
}
.sidebar .logout {
	margin-top: auto;
	margin-bottom: 18px;
	padding-left: 4px;
}
.sidebar .logout a {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #f8ffae;
	font-size: 1.08em;
	border-radius: 8px 0 0 8px;
	padding: 12px 28px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
}
.sidebar .logout a .icon {
	font-size: 1.3em;
	width: 24px;
	text-align: center;
}
.sidebar .logout a:hover {
	background: #f8ffae;
	color: #191654;
}