.feedback-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);
}

/* width */

.feedback-entry::-webkit-scrollbar {
	width: 10px;
}

/* Track */

.feedback-entry::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */

.feedback-entry::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 8px;
}

/* Handle on hover */

.feedback-entry::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.feedback-entry {
	border: 1px solid #ccc;
	padding: 10px;
	height: 250px;
	overflow-y: auto;
	border-radius: 20px;
}

.feedback-title {
	color: #050922;
	font-size: 22px;
	font-weight: 600;
}

.feedback-text {
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	margin: 0.5rem 0;
}

.feedback-file-link {
	display: block;
	margin-top: 5px;
	color: #aaa172;
}

.feedback-file-link:hover {
	color: #aaa172;
}

@media (max-width: 767px) {
	.feedback-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.feedback-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
