.custom-scroll::-webkit-scrollbar {
	width: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
	background: #e2e8f0;
	border-radius: 10px;
}

.config-card {
	transition: all 0.2s ease;
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
}

.config-card.active {
	border-color: #3b82f6;
	background-color: #eff6ff;
}

.config-card.sold-out {
	opacity: 0.6;
	cursor: not-allowed;
	filter: grayscale(0.5);
}

.sold-out-badge {
	background: #f1f5f9;
	color: #64748b;
	font-size: 8px;
	font-weight: 900;
	padding: 2px 6px;
	border-radius: 4px;
	text-transform: uppercase;
	margin-left: 8px;
	border: 1px solid #e2e8f0;
}

.sticky-footer {
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	z-index: 100;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
}

.active-loc {
	background-color: #eff6ff !important;
	border-color: #3b82f6 !important;
}

.config-card {
	padding: 1.25rem;
	border-radius: 12px;
	background: white;
	border: 1.5px solid #f1f5f9;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.config-card:hover {
	border-color: #3b82f6;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.sidebar-input {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 14px;
	width: 100%;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s;
}

.sidebar-input:focus {
	outline: none;
	border-color: #3b82f6;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}