/* ——— wrapper ——— */
.bizsel-wrapper{
	display:flex; gap:0.75rem; align-items:stretch;
}

/* ——— input ——— */
#bizsel-input{
	flex:1;
	padding:8 12;
	border:2px solid rgba(255,255,255,.85);
	border-radius:8px;
	background:transparent;
	color:#fff; font-size:1rem;
}
#bizsel-input::placeholder{color:rgba(255,255,255,.65);}

/* ——— button ——— */
.bizsel-btn{
	padding:0 28px; border:none; border-radius:8px;
	background:#4254FF; color:#fff; font-weight:600;
	cursor:pointer;
}

/* ——— Google predictions (override default) ——— */
.pac-container{
	border-radius:8px!important; padding:6px 0;
	box-shadow:0 6px 25px rgba(0,0,0,.18);
}
.pac-item{padding:10px 18px; font-size:14px; color:#22375F;}
.pac-item:hover,
.pac-item-selected{background:#E8F0FF;}

/* ——— popup ——— */
.bizsel-popup{
	position:fixed; inset:0;
	display:flex; justify-content:center; align-items:flex-start; z-index:9999;
}
.bizsel-popup[hidden]{display:none;}
.bizsel-popup__inner{
	background:#fff; border-radius:12px; max-width:640px; width:90%;
	padding:2rem 1.5rem; position:relative;
	animation:bizSlide .6s forwards;
}
@keyframes bizSlide{from{transform:translateY(-100%);}to{transform:translateY(0);}}

/* stop body scroll when popup open */
.bizsel-noscroll{overflow:hidden;}