* {
	box-sizing: border-box;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
}

body {
	margin: 0;
	background: #f8fafc;
	color: #020617;
	display: flex;
	min-height: 100vh;
}

.sidebar {
	width: 220px;
	background: #020617;
	padding: 20px;
	color: #e5e7eb;
}

.sidebar a {
	display: block;
	padding: 10px;
	margin-bottom: 8px;
	text-decoration: none;
	color: #cbd5f5;
	border-radius: 6px;
}

.sidebar a:hover {
	background: #1e293b;
}

.main {
	flex: 1;
	padding: 24px;
}

.card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.table {
	width: 100%;
	border-collapse: collapse;
}

.table th,
.table td {
	padding: 12px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}

.status-active {
	color: green;
}
.status-pending {
	color: orange;
}
.status-suspended {
	color: red;
}

.btn {
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid #cbd5f5;
	background: #f1f5f9;
	cursor: pointer;
}
