/* Luxfy sidebar divider: a clean vertical separator with rounded caps. */
@media (min-width: 769px) {
  #root aside.fixed.inset-y-0.left-0.z-50 {
    border-right: 0 !important;
    position: fixed;
  }

  #root aside.fixed.inset-y-0.left-0.z-50::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    border-radius: 9999px;
    background: hsl(var(--border));
    pointer-events: none;
  }
}
