/* Shared Back Button Styles */

.page-header-back-btn {
  background: var(--bg-dark, #0f172a);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 16px 0;
  position: sticky;
  top: var(--navbar-height, 80px);
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-header-back-btn .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light, #94a3b8);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(33, 147, 176, 0.1);
  border: 1px solid rgba(33, 147, 176, 0.2);
}

.back-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.back-btn:hover {
  color: white;
  transform: translateX(-4px);
  border-color: transparent;
}

.back-btn:hover::before {
  opacity: 1;
}

.back-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.back-btn:hover i {
  transform: translateX(-2px);
}

.back-btn span {
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-header-back-btn {
    display: none; /* Hide on mobile screens */
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .page-header-back-btn .container {
    padding: 0 20px;
  }
  
  .back-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
} 