/**
 * Filename: ofni-tabs.css
 * Description: Styles for the tabs 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-tabs {
  display: flex;
  background: transparent;
  overflow-x: auto;
}

.tabs-container {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0 8px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #dadce0;
  border-bottom: 1px solid #dadce0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  white-space: nowrap;
}

.tab.active {
  border-bottom: none;
}

.tab-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  width: 20px;
  height: 20px;
}

.tab-close:hover {
  color: red;
}
