.review-title {
    color: #ffffff !important; /* White color by default */
    transition: color 0.3s;
	font-family: Montserrat !important;
	text-transform: uppercase;
	font-style: italic;
	font-weight: 800;
	font-size: 24px !important;
}

.review-title:hover {
    color: #ff6600 !important; /* Orange color on hover */
}

.more-ellipsis, .less-ellipsis {
    color: #ff6600;
    cursor: pointer;
    font-weight: bold;
}

/* CSS for circular images */
.user-avatar-img {
    width: 50px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
    border-radius: 50% !important;
    object-fit: cover;
}

/* CSS for scrollbar */
.review-text {
    max-height: 200px; /* Adjust the height as needed */
    overflow-y: auto;
    position: relative;
	color: white;
}

.review-text::-webkit-scrollbar {
    width: 4px;
}

.review-text::-webkit-scrollbar-track {
    background: transparent;
}

.review-text::-webkit-scrollbar-thumb {
    background-color: #878787; 
    border-radius: 10px;
}

.review-bottom {
	max-height: 95px;
}