/* BossBuddy sidebar fix for short viewports / high browser zoom.
 *
 * Symptom: the fixed-height navigation block (".sidebar-top", flex-shrink: 0)
 * took the whole column, squeezing ".sidebar-scrollable" to a few pixels, so
 * everything below the "数字员工" title was invisible while the sidebar itself
 * could not scroll (".sidebar" is overflow-y: hidden).
 *
 * Loaded as an extra stylesheet so no existing bundle is replaced.
 * Rollback: remove the <link> tag from index.html (and this file).
 */
@media (max-height: 760px) {
  .sidebar {
    height: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .sidebar-top {
    flex-shrink: 1;
    min-height: 48px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .sidebar-scrollable {
    min-height: 132px;
  }
}
