/*
 * 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.
 *
 *= require_tree .
 *= require_self
 */

/* Tailwind CSS v3 syntax */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom application styles can be added below */

/* Dynamic scroll bar styling */
.dynamic-scroll-bar-container {
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.dynamic-scroll-bar-container::-webkit-scrollbar {
  height: 12px;
}

.dynamic-scroll-bar-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.dynamic-scroll-bar-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.dynamic-scroll-bar-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
