/**
 * Filename: ofni-splitter.css
 * Description: Styles for the splitter component
 * Author: David McElroy
 * Copyright (c) 2026 Ofni, LLC and David McElroy. All rights reserved.
 * 
 * PROPRIETARY AND CONFIDENTIAL
 * This software contains proprietary and confidential information of Ofni, LLC.
 * Unauthorized copying, distribution, or use is strictly prohibited.
 * 
 * Dependencies:
 * - global.css
 * 
 * Version History:
 * v1.0.0 - 2026-01-23 - Initial creation
 */

.ofni-splitter {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.split-left,
.split-right {
  overflow: auto;
}

.split-left {
  transition: width 0.5s ease;
}

.split-handle {
  width: 8px;
  background: var(--border-color);
  cursor: col-resize;
  flex-shrink: 0;
}

.split-handle:hover {
  background: var(--primary-color);
}

.split-handle.at-min {
  cursor: e-resize;
}

.split-handle.at-max {
  cursor: w-resize;
}
