.reports-container {
	max-width: 100%;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* flex-wrap: wrap; */
	background-color: #ffffff;
	border-radius: 20px;
	display: grid; /* Use CSS Grid */
	grid-gap: 10px; /* Gap between grid items */
	grid-template-columns: repeat(3, 1fr);
}

.bg-color-view-pdf {
    max-width: 100%;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    background-color: #ffffff;
    border-radius: 20px;
}

.messages-section.view-pdf-section{
    margin-top: 7rem;
    margin-bottom: 2.5rem;
}

.viewInNewPage{
    width: 100%;
}

.btn.btn-signin.viewAllPDF {
    margin: 10px 0;
    height: 40px;
    width: 100%;
    max-width: 150px;
    padding: 0;
}

/* width */

.report-entry::-webkit-scrollbar {
	width: 10px;
}

/* Track */

.report-entry::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */

.report-entry::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 8px;
}

/* Handle on hover */

.report-entry::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.report-entry {
    border: 1px solid #ccc;
    padding: 10px;
    height: 305px;
    overflow-y: auto;
    border-radius: 20px;
}
.report-details {
	color: #000000;
	font-weight: 600;
	margin-bottom: 0.2rem;
	font-size: 14px;
}

.report-details span {
	font-weight: 500;
	font-size: 14px;
}

.file-delete-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.report-delete-btn {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	width: 100%;
	max-width: 100px;
	height: 35px;
	border-radius: 10px;
	border: none;
	outline: none;
	background-color: #aaa172;
}

.report-title {
	color: #050922;
	font-size: 22px;
	font-weight: 600;
}

.report-text {
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	margin: 0.5rem 0;
}

.report-file-link {
	display: block;
	margin-top: 5px;
	color: #aaa172;
}

.report-file-link:hover {
	color: #aaa172;
}

@media (max-width: 826px) {
	.reports-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.reports-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
