/**
 * Filename: ofni-footer.css
 * Description: Styles for the footer 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-footer {
  height: var(--footer-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: white;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: #5f6368;
}

.status-icons {
  display: flex;
  gap: 12px;
}

.status-icons span {
  cursor: help;
}
