.home-icon {
  position: fixed;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.home-icon:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}
