/**
 * Anarivo SPA - Custom Scrollbar Styles
 * Custom scrollbar styling for modals and scrollable areas
 */

/* ============================================
   SETTINGS MODAL SCROLLBAR - Light Theme
   ============================================ */

.settings-modal-body::-webkit-scrollbar {
  width: 8px;
}

.settings-modal-body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.settings-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.settings-modal-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ============================================
   SETTINGS MODAL SCROLLBAR - Dark Theme
   ============================================ */

.dark .settings-modal-body::-webkit-scrollbar-track,
html.dark .settings-modal-body::-webkit-scrollbar-track {
  background: #1e293b;
}

.dark .settings-modal-body::-webkit-scrollbar-thumb,
html.dark .settings-modal-body::-webkit-scrollbar-thumb {
  background: #475569;
}

.dark .settings-modal-body::-webkit-scrollbar-thumb:hover,
html.dark .settings-modal-body::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* ============================================
   FIREFOX SCROLLBAR SUPPORT
   ============================================ */

.settings-modal-body {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.dark .settings-modal-body,
html.dark .settings-modal-body {
  scrollbar-color: #475569 #1e293b;
}

/* ============================================
   GLOBAL SCROLLBAR STYLING (Optional)
   ============================================ */

/* Custom scrollbar for main content area - WebKit browsers */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Dark theme global scrollbar */
.dark .custom-scrollbar::-webkit-scrollbar-thumb,
html.dark .custom-scrollbar::-webkit-scrollbar-thumb {
  background: #475569;
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover,
html.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Firefox support for custom-scrollbar */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.dark .custom-scrollbar,
html.dark .custom-scrollbar {
  scrollbar-color: #475569 transparent;
}
