/* 상단 클릭 많이한 차량리스트 */
/* OneLineScroll */
/* Wrapper로 감싸서 오버레이 위치를 제어 */
.scroll-wrapper {
	position: relative;
	display: inline-block;
}

/* 자동 스크롤 영역 (기본 1줄만 보임) */
.scroll-container {
	width: 200px;
	height: 30px;  /* 한 줄 높이 */
	overflow: hidden;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
}

.scroll-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.scroll-item {
	padding: 5px 10px;
	line-height: 20px;
	height: 30px;
	box-sizing: border-box;
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.scroll-item:hover {
	background: #f5f5f5;
}

/* 전체 리스트 오버레이 */
.full-list-container {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	max-height: 300px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	z-index: 1000;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.full-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.full-list li {
	padding: 8px 12px;
	cursor: pointer;
	transition: background 0.2s ease;
	border-bottom: 1px solid #f0f0f0;
}

.full-list li:last-child {
	border-bottom: none;
}

.full-list li:hover {
	background: #f5f5f5;
}

/* 스크롤바 커스터마이징 */
.full-list-container::-webkit-scrollbar {
	width: 6px;
}

.full-list-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.full-list-container::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.full-list-container::-webkit-scrollbar-thumb:hover {
	background: #a1a1a1;
}

/* 부드러운 스크롤 애니메이션을 위한 클래스 */
.scroll-list.animated {
	transition: transform 0.8s ease-in-out;
}
#footer {
	width: 96%;
	margin: 50px auto 10px;
}