/**
 * Filename: ofni-workspace.css
 * Description: Styles for the workspace 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-workspace {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  height: 100%;
}

.workspace-content {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #5f6368;
  font-size: 16px;
}
