/*
 * 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.
 */

.payment-method-select {
  color: #f8fafc;
  color-scheme: dark;
}

.payment-method-select option {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

.visible-message-scrollbar {
  overflow-y: scroll !important;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: #64748b #0f1d2d;
}

.visible-message-scrollbar::-webkit-scrollbar {
  width: 12px;
}

.visible-message-scrollbar::-webkit-scrollbar-track {
  background: #0f1d2d;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.visible-message-scrollbar::-webkit-scrollbar-thumb {
  background: #64748b;
  border: 3px solid #0f1d2d;
  border-radius: 999px;
}

.visible-message-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #5eead4;
}