/**
 * Filename: global.css
 * Description: Global styles for the Ofni dashboard
 * 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:
 * - None
 * 
 * Version History:
 * v1.0.0 - 2026-01-23 - Initial creation
 */

:root {
  --header-height: 60px;
  --footer-height: 40px;
  --nav-width-collapsed: 60px;
  --nav-width-expanded: 240px;
  --primary-color: #1a73e8;
  --border-color: #dadce0;
  --bg-color: #f8f9fa;
  --text-color: #202124;
  --hover-bg: #f1f3f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  overflow: hidden;
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.content-area {
  flex: 1;
  display: flex;
  overflow: hidden;
}
