/* Floating Back to Top + Scroll to Bottom buttons */
.scroll-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
}

.scroll-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.scroll-btn:hover {
  background-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 48, 135, 0.3);
}

.scroll-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .scroll-buttons {
    bottom: 16px;
    right: 16px;
  }
  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}
