.global-page-scroll-navigation-buttons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.global-page-scroll-navigation-button {
  width: 45px;
  height: 45px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none; /* افتراضيًا مخفي */
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.global-page-scroll-navigation-button:hover {
  background-color: #444;
}

.global-page-scroll-navigation-button i {
  pointer-events: none; /* علشان ما يوقفش الضغط */
}





































































