.rfq-inbox {
	display: flex;
	flex-direction: column; /* Change to column for both desktop and mobile */
}

.rfq-inbox-left {
	width: 100%; /* Full width for both desktop and mobile */
	border-right: none; /* Remove the right border */
	padding: 10px;
}

.rfq-inbox-left ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rfq-inbox-left li {
	cursor: pointer;
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.rfq-inbox-left li:hover {
	background-color: #f0f0f0;
}

.rfq-inbox-left li.active {
	background-color: #e0e0e0;
}

.rfq-inbox-right {
	width: 100%;
	padding: 10px;
	display: none; /* Hide the right section by default */
}

.rfq-inbox-left li.active + .rfq-inbox-right {
	display: block; /* Show the right section below the list item when active */
}

.rfq-details {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	position: relative;
}

.rfq-details ul {
	list-style-type: none;
	padding: 0;
}

.rfq-details ul li {
	cursor: default;
	pointer-events: none; /* Prevent clicking */
	background: none; /* Remove highlight on hover */
}

.create-booking-button {
	display: none; /* Hide the create booking button */
}

.action-menu {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.three-dots {
	font-size: 40px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	right: 0;
	top: 25px;
	min-width: 100px;
}

.dropdown-content button {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
}

.dropdown-content button:hover {
	background-color: #f1f1f1;
}

.delete-rfq-button {
	font-size: 16px; /* Default for desktop */
}

.delete-rfq-button:hover {
	background-color: #f1f1f1;
}

/* No changes needed for mobile */
