/* Light background circle */
.circle-bg {
  width: 80px;
  height: 80px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pink button */
.search-button {
  width: 50px;
  height: 50px;
  background-color: #e84d91; /* pink */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
