


/* =========================
   Skynet Minimal iOS Scroll
   ========================= */

.skynet-scroll {
  overflow: auto;
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: rgba(0,0,0,.35) transparent;
}

/* ===== Webkit Browsers ===== */
.skynet-scroll::-webkit-scrollbar {
  width: 8px;      /* Vertical */
  height: 8px;     /* Horizontal */
}

.skynet-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.skynet-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  transition: background 0.3s ease;
}

.skynet-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.55);
}

.skynet-scroll::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.7);
}

/* ===== Dark Mode Auto ===== */
@media (prefers-color-scheme: dark) {
  .skynet-scroll {
    scrollbar-color: rgba(255,255,255,.35) transparent;
  }

  .skynet-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
  }

  .skynet-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.55);
  }

  .skynet-scroll::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.75);
  }
}

/* ===== Smooth behavior ===== */
.skynet-scroll {
  scroll-behavior: smooth;
}

