html {
  scrollbar-gutter: stable;
  /*scroll-behavior: smooth;*/
}
.htmx-indicator {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}
::-webkit-scrollbar {
  width: 6px;   /** для вертикального скроллбара */
  height: 6px;  /** для горизонтального скроллбара */
}
/* Ползунок */
::-webkit-scrollbar-thumb {
  background: rgba(177, 180, 182, 0.8); /* 1.0 - непрозрачный */
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #838688;
}
.toast-container {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 150;
}
.toast {
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  opacity: 1;
  transition: opacity 1s;
}
.fade-out {
  opacity: 0;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
