/* ================================================================================
Файл: scrollbars.css
Описание: Стили для скроллбаров
Версия: 2.0.0
================================================================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #4a5568;
  border-radius: 4px;
  transition: all var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ===== СПЕЦИФИЧНЫЕ СКРОЛЛБАРЫ ===== */
.note-look::-webkit-scrollbar,
.day-content::-webkit-scrollbar,
.categories-list::-webkit-scrollbar,
.edit-file-list::-webkit-scrollbar,
.view-file-list-compact::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.note-content-preview::-webkit-scrollbar,
.attachment-list::-webkit-scrollbar,
.file-preview::-webkit-scrollbar,
.tags-cloud-flyme::-webkit-scrollbar,
.note-view-content::-webkit-scrollbar {
  width: 6px;
}

.note-look::-webkit-scrollbar-track,
.day-content::-webkit-scrollbar-track,
.categories-list::-webkit-scrollbar-track,
.edit-file-list::-webkit-scrollbar-track,
.view-file-list-compact::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.note-content-preview::-webkit-scrollbar-track,
.attachment-list::-webkit-scrollbar-track,
.file-preview::-webkit-scrollbar-track,
.tags-cloud-flyme::-webkit-scrollbar-track,
.note-view-content::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 3px;
}

.note-look::-webkit-scrollbar-thumb,
.day-content::-webkit-scrollbar-thumb,
.categories-list::-webkit-scrollbar-thumb,
.edit-file-list::-webkit-scrollbar-thumb,
.view-file-list-compact::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.note-content-preview::-webkit-scrollbar-thumb,
.attachment-list::-webkit-scrollbar-thumb,
.file-preview::-webkit-scrollbar-thumb,
.tags-cloud-flyme::-webkit-scrollbar-thumb,
.note-view-content::-webkit-scrollbar-thumb {
  background: #4a5568;
  border-radius: 3px;
}

.note-look::-webkit-scrollbar-thumb:hover,
.day-content::-webkit-scrollbar-thumb:hover,
.categories-list::-webkit-scrollbar-thumb:hover,
.edit-file-list::-webkit-scrollbar-thumb:hover,
.view-file-list-compact::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.note-content-preview::-webkit-scrollbar-thumb:hover,
.attachment-list::-webkit-scrollbar-thumb:hover,
.file-preview::-webkit-scrollbar-thumb:hover,
.tags-cloud-flyme::-webkit-scrollbar-thumb:hover,
.note-view-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}