/**
 * Filename: index.css
 * Description: Styles for OFNI Elements Showcase
 * Author: David McElroy
 * Copyright (c) 2020-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
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #1e293b;
    color: white;
    padding: 12px 24px;
    flex-shrink: 0;
}

header h1 { font-size: 18px; font-weight: 700; }
header p { font-size: 12px; color: #94a3b8; margin-top: 2px; }

main {
    flex: 1;
    overflow: hidden;
}

ofni-split-view {
    display: block;
    height: 100%;
    width: 100%;
}
