/* Go Back Button Styles */
.go-back-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  align-items: center;
  gap: 6px;
  display: none; /* Hide by default */
}

.go-back-button:hover {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.go-back-button.visible {
  display: flex; /* Show when the visible class is added */
}
