/* Back Button Styles */
.back-icon-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.back-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.back-icon:hover {
  transform: translateX(-5px);
}

/* Fallbacks for when the SVG image doesn't load */
.back-icon-svg {
  cursor: pointer;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.back-icon-svg:hover {
  transform: translateX(-5px);
}

.back-icon-text {
  font-size: 24px;
  cursor: pointer;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-icon-text:hover {
  transform: translateX(-5px);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .back-icon-container {
    top: 10px;
    left: 10px;
  }
  
  .back-icon {
    width: 25px;
    height: 25px;
  }
}