/* Cockpit — custom CSS */

/* Smooth transitions for sidebar collapse */
#sidebar {
  transition: width 200ms ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

/* Prevent FOUC for hidden data-show elements */
[data-show] {
  transition: opacity 100ms ease;
}

/* Rich text editor (TinyMCE placeholder) */
.tox-tinymce {
  border-radius: 8px !important;
}
