.sticky-topbar {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 1100;
	border-bottom: 1px solid #eee;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.search-summary {
	display: flex;
	align-items: center;
	background: #fef8e7;
	border: 2px solid #fecd2f;
	border-radius: 12px;
	padding: 10px 12px;
	cursor: pointer;
}

.back-arrow {
	font-size: 18px;
	margin-right: 10px;
	color: #222;
}

.location-dates {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.location {
	font-weight: 500;
	font-size: 15px;
	color: #222;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 190px;
}

.dates {
	font-size: 14px;
	color: #666;
	margin-left: 10px;
	white-space: nowrap;
}

/* Actions Row */
.topbar-actions {
	display: flex;
	justify-content: space-around;
	padding-top: 4px;
}

.topbar-actions button {
	background: none;
	border: none;
	font-size: 13px;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	cursor: pointer;
}

.topbar-actions button i {
	font-size: 18px;
}

/* Dummy content for scroll */
.content {
	padding: 20px;
}

.card {
	background: #fff;
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Bottom sheet */
.mobile-search-sheet {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1200;
	padding: 20px;
	transition: bottom 0.3s ease;
}

.mobile-search-sheet.open {
	bottom: 0;
}

.sheet-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.sheet-header h4 {
	margin: 0;
	font-size: 18px;
}

.sheet-header button {
	font-size: 24px;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
}

.icon-wrapper {
  position: relative;
  width: 24px; /* match icon size */
  height: 24px;
  display: inline-block;
}

.badge-circle {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: red;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  z-index: 1;
}
