/**
 * Themed scrollbars for main scroll areas (web only).
 * Class .fs-scroll-main is applied from React Native (className on ScrollView / FlatList).
 */

.fs-scroll-main {
  /* Reserve space when overflow appears (reduces layout jump) */
  scrollbar-gutter: stable;
}

/* Chromium, Safari, Edge */
.fs-scroll-main::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.fs-scroll-main::-webkit-scrollbar-track {
  background: rgba(56, 76, 101, 0.45);
  border-radius: 6px;
}

.fs-scroll-main::-webkit-scrollbar-thumb {
  background: #485f88;
  border-radius: 6px;
  border: 2px solid rgba(18, 21, 36, 0.35);
}

.fs-scroll-main::-webkit-scrollbar-thumb:hover {
  background: #5e7391;
}

/* Firefox */
.fs-scroll-main {
  scrollbar-width: thin;
  scrollbar-color: #485f88 rgba(56, 76, 101, 0.45);
}
