body {
	padding: 0;
	margin: 0;
	height: 100vh;
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
}
.container {
	display: flex;
	background-color: white;
}
.heading {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(0, 0, 56);
	color: white;
	height: 90px;
	font-size: 24px;
	font-weight: 600;
	border-bottom: 10px solid white;
	position: fixed;
	width: 100%;
}
.heading img {
	width: 65px;
	height: 65px;
	margin-right: 10px;
	border-radius: 50px;
	position: absolute;
	left: 20px;
}
.sidebar {
	width: 20%;
	background-color: rgb(0, 0, 56);
	color: white;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-radius: 0 8px;
}
.sidebar h1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.sidebar div {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sidebar button {
	width: 80%;
	background-color: rgb(0, 0, 56);
	border: 1px solid white;
	color: white;
	padding: 12px;
	margin-bottom: 10px;
	cursor: pointer;
	text-align: left;
	border-radius: 5px;
	transition: background-color 0.3s;
	font-weight: 600;
}
.sidebar button:hover {
	background-color: white;
	color: rgb(0, 0, 56);
}
.sidebar div button {
	background-color: transparent;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 16px;
	height: 30px;
	width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: 1px solid white;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.table {
	width: 100%;
	border-collapse: collapse;
}
.table th,
.table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
}
.table th {
	background-color: #f4f4f4;
}
.table tr:nth-child(even) {
	background-color: #f9f9f9;
}
.table tr:hover {
	background-color: #f1f1f1;
}
.hidden {
	display: none;
}

.control-panel {
	background-color: rgb(0, 0, 56);
	color: #ecf0f1;
	padding: 20px;
	border-radius: 8px;
}
.control-panel h2 {
	margin-bottom: 20px;
	font-size: 24px;
}
.print-button {
	margin-top: 20px;
	padding: 12px 25px;
	background-color: #4caf50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}
.print-button:hover {
	background-color: #45a049;
}
video {
	width: 100%;
}
#date {
	margin-top: 20px;
	padding: 10px 25px;
	background-color: white;
	color: black;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
	width: 63% !important;
}

.sidebar {
	width: 20%;
	background-color: rgb(0, 0, 56);
	color: white;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-radius: 0 8px;
	position: fixed;
	left: 0;
	top: 90px; /* Below the heading */
	height: calc(100vh - 90px);
	transition: left 0.3s ease-in-out;
	margin-top: 10px;
}

.sidebar.collapsed {
	left: -19%;
}

.toggle-btn {
	position: absolute;
	left: 22%;
	top: 100px;
	background-color: rgb(0, 0, 56);
	border: 1px solid white;
	color: white;
	cursor: pointer;
	font-size: 18px;
	padding: 8px 12px;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.toggle-btn:hover {
	background-color: white;
	color: rgb(0, 0, 56);
}

/* Hide toggle button when sidebar is open */
.sidebar:not(.collapsed) + .toggle-btn {
	display: none;
}
.content {
	width: 80%;
	height: 100vh;
	padding: 0 20px;
	background-color: white;
	border-left: 1px solid #ddd;
	transition: width 0.3s ease-in-out;
	margin-left: 23%;
	margin-top: 100px;
}

.sidebar.collapsed + .content {
	width: 100%;
	margin-left: 10%;
}
