.bandbox-wrapper {
	position: relative;
	width: 300px;
}

/* Input Utama (Readonly agar user tidak mengetik sembarangan disini) */
.bandbox-input {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	background-color: #fff;
}

.bandbox-input:focus {
	outline: 2px solid #007bff;
}

/* Container Dropdown */
.bandbox-dropdown {
	display: none; /* Tersembunyi default */
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	border: 1px solid #ccc;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border-radius: 0 0 4px 4px;
	margin-top: 2px;
}

.bandbox-dropdown.active {
	display: block;
}

/* Input Pencarian di dalam Dropdown */
.search-container {
	padding: 8px;
	border-bottom: 1px solid #eee;
	background: #f9f9f9;
}

.search-input {
	width: 100%;
	padding: 6px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 3px;
}

/* List Hasil */
.result-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 200px; /* Batas tinggi agar muncul scroll */
	overflow-y: auto;
}

.result-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
}

.result-item:hover {
	background-color: #e9ecef;
}

/* Loading Indicator */
.loading-text {
	text-align: center;
	padding: 10px;
	font-size: 12px;
	color: #666;
	display: none;
}

.no-data {
	padding: 10px;
	text-align: center;
	color: #888;
}