* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #ececec;
	color: #111
}

.layout {
	display: flex;
	min-height: 100vh
}

.sidebar {
	width: 235px;
	background: #f7f7f7;
	border-right: 1px solid #d4d4d4;
	padding: 20px
}

.brand {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 24px;
	color: #ff6a00
}

.sidebar nav {
	display: grid;
	gap: 10px
}

.sidebar a {
	text-decoration: none;
	color: #222;
	padding: 10px 12px;
	border-radius: 8px
}

.sidebar a:hover {
	background: #e9e9e9
}

.content {
	flex: 1
}

.topbar {
	height: 66px;
	background: #fff;
	border-bottom: 1px solid #d4d4d4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px
}

.page {
	padding: 22px
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.card {
	background: #fff;
	border-radius: 10px;
	padding: 22px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.card.blue {
	background: #1f6feb;
	color: #fff
}

.card.green {
	background: #209250;
	color: #fff
}

.card.yellow {
	background: #f6c000
}

.card.dark {
	background: #1c2229;
	color: #fff
}

.table-wrap {
	background: #fff;
	border-radius: 10px;
	padding: 18px;
	margin-top: 18px
}

.table {
	width: 100%;
	border-collapse: collapse
}

.table th,
.table td {
	padding: 12px;
	border-bottom: 1px solid #e5e5e5;
	text-align: left
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px
}

.input,
.select,
.file {
	width: 100%;
	padding: 11px;
	border: 1px solid #ccc;
	border-radius: 8px
}

.btn {
	padding: 11px 15px;
	border: none;
	border-radius: 8px;
	background: #111;
	color: #fff;
	cursor: pointer
}

.btn.orange {
	background: #ff7a00;
	color: #111;
	font-weight: 700
}

.badge {
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700
}

.scheduled {
	background: #fef3c7
}

.active {
	background: #dcfce7
}

.closed {
	background: #fee2e2
}

@media (max-width:960px) {
	.cards {
		grid-template-columns: repeat(2, 1fr)
	}

	.form-grid {
		grid-template-columns: 1fr
	}

	.sidebar {
		width: 200px
	}
}