.top-bar {
	width: 100%;
	height: 60px;
	background: linear-gradient(135deg, #21cbf3, #2196f3);
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	font-size: 24px;
	font-weight: bold;
}

.top-bar-left img {
	height: 60px;
}

.top-bar-right {
	font-size: 22px;
}

.dashboard-container {
	display: flex;
	justify-content: space-around;
	padding: 10px;
	height: calc(100vh - 60px);
	box-sizing: border-box;
}

.kanban-column {
	background: #fff;
	width: 24%;
	border-radius: 10px;
	border-top: 8px solid;
	display: flex;
	flex-direction: column;
}

.column-header {
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding: 8px 0;
}

.column-body {
	flex: 1;
	padding: 8px;
	overflow-y: auto;
}

.kanban-card {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 8px;
	padding: 8px;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*border-bottom: 0;*/
}

.tag {
	border-radius: 4px;
	/* padding: 2px 6px; */
	font-size: 0.9em;
	font-weight: bold;
	/* margin-right: 4px; */
}

.vehicle {
	margin: 6px 0 2px;
	font-size: 1em;
	font-weight: bold;
}

.client {
	color: #555;
	font-size: 0.9em;
	font-weight: bold;
}

.card-footer {
	/*border-top: 0;*/
	text-align: right;
	font-size: 0.8em;
	color: #333;
}

.card-body {
	position: relative;
	padding: 0;
}

.plate {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: #ddd;
	border-radius: 3px;
	font-weight: bold;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
	padding: 0 8px;
}
