/* Back to Home Button Styling */
.back-to-home {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.back-to-home a {
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.back-to-home a:hover {
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: white;
}
