/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@font-face {
  font-family: "SwiDlLuSsCJtc";
  src: url("/fonts/SwiDlLuSsCJtc-DiLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Custom Scrollbar Styles */
.scrollbar-custom {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #f3f4f6;
}

.scrollbar-custom::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}

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

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Dark mode scrollbar */
.dark .scrollbar-custom {
  scrollbar-color: #6b7280 #1f2937;
}

.dark .scrollbar-custom::-webkit-scrollbar-track {
  background: #1f2937;
}

.dark .scrollbar-custom::-webkit-scrollbar-thumb {
  background: #6b7280;
}

.dark .scrollbar-custom::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
