
body{
font-family:Arial,sans-serif;
background:white;
color:#222
}
.container{
max-width:1100px;
margin:40px auto;
}
h2{
text-align:center
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:35px;
margin-bottom:25px
}
label{
display:block;
margin-bottom:8px
}
input,select{
width:100%;
height:40px;
border:1px solid #ddd;
border-radius:5px;
padding:0 12px;
box-sizing:border-box
}
.input-unit{
display:flex;
align-items:center
}
.input-unit span{
margin-left:-40px;
color:#555
}
button{
background:#00b879;
color:white;
border:0;
height:42px;
margin-top:25px;
border-radius:5px;
cursor:pointer
}
.searchbox input{
background:white
}
.dropdown{
position:absolute;
background:white;
border:1px solid #ddd;
width:350px;
z-index:10;
box-shadow:0 2px 5px #ddd
}
.dropdown div{
padding:10px;
cursor:pointer
}
.dropdown div:hover{
background:#eee
}
.result{
margin-top:50px
}
.card{
margin-bottom:25px
}
.price{
font-size:20px;
font-weight:bold;
color:#999
}
