/* Sidebar Styles */
.sidebar-toggle-btn {
	position: fixed;
	left: 20px;
	top: 5%;
	transform: translateY(-50%);
}

.sidebar-toggle-btn:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 6px 16px rgba(90, 72, 56, 0.5);
}

.sidebar-toggle-btn .icon {
	display: none;
}

.sidebar-toggle-btn span {
	color: #eee5d2;
	font-weight: bold;
	font-size: 0.9em;
	padding: 0 5px;
}

.locations-sidebar {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	max-width: 400px;
	background: linear-gradient(90deg, #1a1a2e 0%, #0f0f23 100%);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: -8px 0 20px rgba(0, 0, 0, 0.4);
	overflow-x: hidden;
	transition: 0.5s;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.locations-sidebar.open {
	width: 325px;
}

.sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
	color: #ffa500;
	font-size: 1.5em;
}

.close-sidebar-btn {
	background: none;
	border: none;
	font-size: 1.5em;
	color: #e8e8e8;
	cursor: pointer;
	padding: 5px;
	transition: color 0.3s ease;
}

.close-sidebar-btn:hover {
	color: #ffa500;
}

.sidebar-content {
	flex-grow: 1;
	overflow-y: auto;
	padding: 10px;
}

.location-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 8px;
	display: flex;
	margin-top: 10px;
	justify-content: space-between;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease;
}

.location-item:hover {
	background: rgba(255, 255, 255, 0.08);
}

.location-name {
	font-weight: bold;
	color: #ffffff;
	padding-right: 10px;
}

.location-count {
	background: #ffa500;
	color: #1a1a2e;
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 0.85em;
	font-weight: bold;
}

.location-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	margin-bottom: 10px;
	background: rgba(255, 165, 0, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(255, 165, 0, 0.3);
	font-weight: bold;
	color: #ffa500;
	text-transform: uppercase;
	font-size: 0.9em;
	letter-spacing: 0.5px;
}
