/* cignyl-sftp 20260824 */
/* ------------------------------ */
/* v2 Separator (shadcn-like)     */
/* ------------------------------ */

.v2-theme .v2-separator {
  flex: 0 0 auto;
  background: hsl(var(--border));
}

.v2-theme .v2-separator--orientation-horizontal {
  display: block;
  height: var(--v2-separator-thickness, 1px);
  width: var(--v2-separator-length, 100%);
}

.v2-theme .v2-separator--orientation-vertical {
  display: inline-block;
  width: var(--v2-separator-thickness, 1px);
  height: var(--v2-separator-length, 100%);
}

