/* Wrapper for all room boxes */
.room-list-wrapper {
	display: flex;
	overflow-x: auto;
	padding: 10px;
	gap: 15px;
	width: 100%;
	scroll-snap-type: x mandatory;
}

/* reviews */
.reviews-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.review-box {
    transition: 0.3s;
}
.review-box:hover {
    background: #f9f9f9;
}
/* profile extra bottom menu*/
.profile-menu-buttons {
    display: flex;
    justify-content: center;  /* center horizontally */
    align-items: center;      /* center vertically */
    gap: 35px;                /* buttons ke darmiyan space */
    margin-top: 5px;
}

.profile-menu-buttons .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* circle shape */
}

/* Individual room box */
.room-box {
	flex: 0 0 auto;
	width: 50px;
	text-align: center;
	cursor: pointer;
	scroll-snap-align: start;
}

.room-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 5px;
}

.room-name {
	font-size: 9px;
	font-weight: bold;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.room-list-wrapper::-webkit-scrollbar {
	height: 6px;
}
.room-list-wrapper::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}

/* right toggle button */