


/* Business Search Portal */
#businessSearchPortal {
  font-size: 1.2rem;
  text-align: center;
  background-color: #e6f2ff;
  padding: 15px;
  margin: 20px auto;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

#businessSearchPortal:hover {
  background-color: #d0e5ff;
  transform: scale(1.03);
}

/* The 'Click Here' Link Style */
#businessSearchTrigger {
  font-weight: bold;
  color: #446381;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

#businessSearchTrigger:hover {
  color: #2a4c6b;
}
