*	{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	padding-top: 70px;
	background-color: #f4f6f9;
}
.menu {
	width: 100%;
	height: 70px;
	background-color: #800000;
	display: flex;
	justify-content: flex-start;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
.menu a{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 25px;
	color: white;
	text-decoration: none;
	font-size: 18px;
	transition: 0.2s;
}
.menu a:hover {
	background-color: #600000;
}
.logo {
	height: 100%;
	font-size: 22px;
	align-items: center;
	display: flex;
}
.logo a {
	padding: 0 30px;
}
.logo a:hover {
	background-color: transparent;
	color: white;
}
.dropdown {
	position: relative;
	height: 100%;
}
.dropdown-content {
	display: none;
	position: absolute;
	top: 70px;
	left: 0;
	min-width: 200px;
	background-color: #800000;
}
.dropdown-content a {
	height: 50px;
	padding: 20px;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropbtn::after {
	content: " ↓";
	font-size: 12px;
	margin-left: 8px;
}
.content {
	width: 100%;
	padding: 30px;
}
.content-box {
	margin: 0 auto;
	padding: 30px;
	background-color: white;
	border-radius: 10px;
	min-height: 500px;
}
.user-info {
	margin-left: auto;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 25px;
	color: white;
}
.naglowek {
	font-size: 30px;
	font-weight: bold;
}
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 30px 0;
}
.stat-box {
	display: block;
	padding: 25px;
	background-color: #d3d3d3;
	border-radius: 10px;
	text-decoration: none;
	color: black;
	transition: 0.2s;
}
.stat-box:hover {
	background-color: #a1a1a1;
}
.stat-box h3 {
	font-size: 30px;
	margin-bottom: 32px;
}
.stat-box p {
	font-size: 25px;
}
.driver-form {
	max-width: 600px;
	margin: 30px 0;
	margin-bottom: 20px;
}
.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
.form-group label {
	margin-bottom: 7px;
	font-weight: bold;
}
.form-group input {
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 15px;
}
.driver-form button {
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	background-color: #800000;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: 0.2s;
}
.driver-form button:hover {
	background-color: #600000;
}
.driver-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0;
	gap: 20px;
}
.driver-toolbar input {
	flex: 1;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 15px;
}
.add-button {
	padding: 12px 20px;
	background-color: #800000;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	white-space: nowrap;
	border: none;
	font: inherit;
	cursor: pointer;
}
.add-button:hover {
	background-color: #600000;
}
.driver-table {
	width: 100%;
	border-collapse: collapse;
}
.driver-table th {
	padding: 15px;
	background-color: #800000;
	color: white;
	text-align: left;
}
.driver-table td {
	padding: 15px;
	border-bottom: 1px solid #ddd;
}
.driver-table tr:hover {
	background-color: #f5f5f5;
}
.table-wrapper {
	width: 100%;
	overflow-x: auto;
}
.edit-button {
	padding: 7px 12px;
	background-color: #800000;
	color: white;
	text-decoration: none;
	border-radius: 4px;
}
.edit-button:hover {
	background-color: #600000;
}
.success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}
.success-message h3 {
	margin-bottom: 10px;
}
.error-message {
	background-color: #f8d7da;
	color: #721c24;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}
.error-message h3 {
	margin-bottom: 10px;
}
.back-button {
	display: inline-block;
	margin-top: 15px;
}
@media (max-width: 768px) {
	.stats {
		grid-template-columns: 1fr;
	}
	.driver-toolbar {
		flex-direction: column;
		align-items: stretch;
	}
}
	