body{
  font-family:Arial;
  margin:20px auto;
  max-width:800px;
  background:#fafafa;
}
h2{text-align:center;margin-bottom:25px;}
.field{margin-bottom:25px;position:relative;}
label{display:block;font-weight:bold;margin-bottom:6px;text-transform:capitalize;}
input[type=text]{
  width:100%;
  padding:8px;
  border:1px solid #ccc;
  border-radius:4px;
}
.autocomplete-container{position:relative;}
.suggestions{
  list-style:none;
  padding:0;
  margin:0;
  border:1px solid #ccc;
  border-top:none;
  position:absolute;
  top:38px;
  left:0;
  width:100%;
  background:white;
  z-index:9999;
  max-height:180px;
  overflow-y:auto;
  border-radius:0 0 6px 6px;
  box-shadow:0 3px 6px rgba(0,0,0,0.15);
  display:none;
}
.suggestions li{
  padding:8px 10px;
  cursor:pointer;
}
.suggestions li:hover,
.suggestions li.active{
  background:#1976d2;
  color:white;
}
.btn{
  padding:10px 20px;
  background:#1976d2;
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
}
.btn:hover{background:#1258a5;}
.progress{
  width:100%;
  background:#eee;
  height:18px;
  border-radius:9px;
  margin-top:10px;
  overflow:hidden;
}
.progress>div{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#4caf50,#2e7d32);
}
#resultLinks ul{list-style:none;padding-left:0;}
#resultLinks a{color:#1976d2;text-decoration:none;font-weight:bold;}

