.title-first {
	font-size: 25px;
	padding-bottom: 30px;
	padding-top: 20px;
	border-bottom: 1px solid #000;
}
.report-item {
	box-shadow: 1px 2px 8px 0px rgba(0,0,0,0.75);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 98%;
	border-radius: 20px;
}

.report-btn button {
	background: #0C81C7;
	width: 100%;
}
.students-of-report {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.report-btn {
	display: flex;
	gap: 5px;
}
.open-report {
	width: 50%;
	background: #0C81C7;
}
.add-penalty-block {
	display: flex;
	gap: 10px;
}
.blocks-of-reports {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.report-title {
	font-size: 15px;
}
.student-item p {
	font-size: 15px;
}
.reports-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.teacher-name {
	margin: unset;
	font-size: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

/* Overlay */
.overlay-report {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none; /* Hidden by default */
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Pop-up */
.report-popup {
	background: white;
	padding: 20px;
	border-radius: 8px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 80%;
	height: 28%;
	text-align: center;
	position: relative;
}

.report-block {
	margin-bottom: 20px;
}

button {
	padding: 10px 20px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: #0056b3;
}

.close-popup {
	background-color: #dc3545;
}
.report-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0; top: 0;
	width: 100%; height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}
.modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	width: 30%;
	border-radius: 6px;
	position: relative;
}
.close-modal {
	position: absolute;
	top: 10px; right: 15px;
	font-size: 24px;
	cursor: pointer;
}
@media (min-width: 320px) and (max-width: 767px) {
	.teacher-report-list {
		justify-content: center;
	}
}

