/* CSS Variables & Reset */
:root {
    --primary: #ff8c00;
    --primary-dark: #e67e00;
    --secondary: #1a1a1a;
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --text: #333333;
    --border: #e0e0e0;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
}

/* Layout */
.app-container { display: flex; min-height: 100vh; }
.app-container.logged-in { display: flex; }

.sidebar { 
    width: 260px; 
    background: var(--secondary); 
    color: white; 
    position: fixed; 
    height: 100vh; 
    overflow-y: auto; 
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.main-content { 
    flex: 1; 
    margin-left: 260px; 
    padding: 30px; 
}

/* Navigation */
.logo-container { 
    padding: 20px; 
    border-bottom: 1px solid #333; 
    text-align: center; 
}

.logo-container img { max-width: 140px; height: auto; }

.nav-menu { padding: 20px 0; flex: 1; }

.nav-item { 
    padding: 15px 25px; 
    cursor: pointer; 
    transition: all 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    border-left: 4px solid transparent; 
}

.nav-item:hover, .nav-item.active { 
    background: rgba(255, 140, 0, 0.1); 
    border-left-color: var(--primary); 
    color: var(--primary); 
}

.logout-btn {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
    margin-top: auto;
    border-top: 1px solid #333;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

/* Header */
.header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 30px; 
    padding-bottom: 20px; 
    border-bottom: 2px solid var(--border); 
}

.page-title { font-size: 28px; font-weight: 700; color: var(--secondary); }

/* Buttons */
.btn { 
    padding: 10px 20px; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    font-size: 14px; 
    font-weight: 600; 
    transition: all 0.3s; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #6c757d; color: white; }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-info { background: var(--info); color: white; }
.btn-sm { padding: 6px 12px; font-size: 12px; }

/* Stats Grid */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 30px; 
}

.stat-card { 
    background: var(--card-bg); 
    padding: 25px; 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    border-left: 4px solid var(--primary); 
}

.stat-card.success { border-left-color: var(--success); }
.stat-card.warning { border-left-color: var(--warning); }
.stat-card.danger { border-left-color: var(--danger); }
.stat-card.info { border-left-color: var(--info); }

.stat-label { 
    color: #666; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    margin-bottom: 8px; 
}

.stat-value { font-size: 28px; font-weight: 700; color: var(--secondary); }

/* Tables */
.data-table { 
    width: 100%; 
    background: var(--card-bg); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    margin-bottom: 30px; 
}

.table-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
    border-bottom: 1px solid var(--border); 
    flex-wrap: wrap; 
    gap: 15px; 
}

table { width: 100%; border-collapse: collapse; }

th, td { 
    padding: 15px 20px; 
    text-align: left; 
    border-bottom: 1px solid var(--border); 
}

th { 
    background: #f8f9fa; 
    font-weight: 600; 
    color: var(--secondary); 
    text-transform: uppercase; 
    font-size: 11px; 
    letter-spacing: 0.5px; 
}

tr:hover { background: #f8f9fa; }

/* Status Badges */
.status-badge { 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600; 
    text-transform: uppercase; 
}

.status-paid { background: #d4edda; color: #155724; }
.status-pending { background: #fff3cd; color: #856404; }
.status-open { background: #d1ecf1; color: #0c5460; }
.status-draft { background: #d1ecf1; color: #0c5460; }
.status-overdue { background: #f8d7da; color: #721c24; }
.status-sent { background: #e2e3f3; color: #383d7a; }
.status-approved { background: #d4edda; color: #155724; }

/* Modals */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 2000; 
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(5px); 
    overflow-y: auto; 
}

.modal.active { display: flex; }

.modal-content { 
    background: white; 
    width: 90%; 
    max-width: 900px; 
    max-height: 90vh; 
    overflow-y: auto; 
    border-radius: 12px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
    animation: slideIn 0.3s ease-out; 
    margin: 20px auto; 
}

@keyframes slideIn { 
    from { opacity: 0; transform: translateY(-50px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.modal-header { 
    padding: 25px; 
    border-bottom: 2px solid var(--border); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%); 
    color: white; 
    border-radius: 12px 12px 0 0; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
}

.modal-body { padding: 25px; }

.close-btn { 
    background: none; 
    border: none; 
    color: white; 
    font-size: 24px; 
    cursor: pointer; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    transition: background 0.3s; 
}

.close-btn:hover { background: rgba(255,255,255,0.1); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full-width { grid-column: 1 / -1; }

label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: var(--secondary); 
    font-size: 13px; 
}

input, select, textarea { 
    width: 100%; 
    padding: 12px; 
    border: 2px solid var(--border); 
    border-radius: 6px; 
    font-size: 14px; 
    transition: border-color 0.3s; 
}

input:focus, select:focus, textarea:focus { 
    outline: none; 
    border-color: var(--primary); 
}

/* Line Items */
.line-items { 
    margin-top: 20px; 
    border: 2px solid var(--border); 
    border-radius: 8px; 
    padding: 20px; 
}

.line-item { 
    display: grid; 
    grid-template-columns: 1.5fr 0.8fr 1.2fr 0.6fr 0.8fr 0.8fr auto; 
    gap: 8px; 
    margin-bottom: 10px; 
    align-items: center; 
    padding: 10px; 
    background: #f8f9fa; 
    border-radius: 6px; 
}

.totals-section { 
    margin-top: 20px; 
    text-align: right; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 8px; 
}

.total-row { 
    display: flex; 
    justify-content: flex-end; 
    gap: 20px; 
    margin-bottom: 10px; 
    align-items: center; 
}

.grand-total { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--primary); 
    border-top: 2px solid var(--border); 
    padding-top: 10px; 
    margin-top: 10px; 
}

/* Views */
.view-section { display: none; }
.view-section.active { display: block; animation: fadeIn 0.4s; }

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Mobile */
.mobile-menu-btn { 
    display: none; 
    position: fixed; 
    top: 20px; 
    left: 20px; 
    z-index: 1001; 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 10px; 
    border-radius: 6px; 
    cursor: pointer; 
}

@media (max-width: 768px) { 
    .sidebar { transform: translateX(-100%); } 
    .sidebar.active { transform: translateX(0); } 
    .main-content { margin-left: 0; padding: 80px 20px 20px; } 
    .mobile-menu-btn { display: block; } 
    .form-grid { grid-template-columns: 1fr; } 
    .line-item { grid-template-columns: 1fr; } 
    .stats-grid { grid-template-columns: 1fr; } 
}

/* Print Styles */
@media print {
    @page { margin: 1cm; size: auto; -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body { background: white !important; margin: 0 !important; padding: 0 !important; }
    .sidebar, .mobile-menu-btn, .nav-menu, .main-content, .app-container, .modal, .view-section, 
    #dashboard, #customers, #suppliers, #inventory, #estimates, #invoices, #purchase-orders, #expenses, #settings { 
        display: none !important; 
    }
    #previewModal { 
        display: block !important; 
        position: static !important; 
        visibility: visible !important; 
        opacity: 1 !important; 
        background: white !important; 
        width: 100% !important; 
        height: auto !important; 
        overflow: visible !important; 
    }
    #previewModal .modal-content { 
        display: block !important; 
        box-shadow: none !important; 
        max-width: 100% !important; 
        margin: 0 !important; 
        border-radius: 0 !important; 
        max-height: none !important; 
        overflow: visible !important; 
        border: none !important; 
        background: white !important; 
    }
    #previewModal .modal-header { display: none !important; }
    #previewModal .modal-body { display: block !important; padding: 0 !important; background: white !important; }
    #previewModal .no-print { display: none !important; }
    .document-preview { 
        display: block !important; 
        padding: 20px !important; 
        max-width: 100% !important; 
        background: white !important; 
        box-shadow: none !important; 
    }
    .document-preview * { visibility: visible !important; }
    
    /* Smaller logo for print */
    .document-preview img {
        max-width: 120px !important;
        height: auto !important;
    }
}

/* Utilities */
.action-btns { display: flex; gap: 5px; flex-wrap: wrap; }
.search-box { 
    padding: 10px 15px; 
    border: 2px solid var(--border); 
    border-radius: 6px; 
    width: 250px; 
    font-size: 14px; 
}

.filter-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-tab { 
    padding: 8px 16px; 
    border: 2px solid var(--border); 
    background: white; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: all 0.3s; 
    font-weight: 500; 
    font-size: 13px; 
}

.filter-tab.active, .filter-tab:hover { 
    background: var(--primary); 
    color: white; 
    border-color: var(--primary); 
}

.empty-state { text-align: center; padding: 60px 20px; color: #666; }

.recent-activity { 
    background: var(--card-bg); 
    padding: 25px; 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    margin-top: 30px; 
}

.dashboard-search-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 10px;
}

.dashboard-search-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-search-input {
    width: min(100%, 720px);
    flex: 1 1 420px;
}

.dashboard-search-results {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    max-height: 360px;
    overflow-y: auto;
}

.dashboard-search-result {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s ease;
}

.dashboard-search-result:last-child {
    border-bottom: none;
}

.dashboard-search-result:hover {
    background: #f8f9fa;
}

.dashboard-search-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.dashboard-search-meta {
    font-size: 12px;
    color: #666;
}

.activity-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 15px 0; 
    border-bottom: 1px solid var(--border); 
}

.activity-item:last-child { border-bottom: none; }

.activity-icon { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: var(--primary); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    font-size: 18px; 
}

.delete-btn { 
    background: none; 
    border: none; 
    color: var(--danger); 
    cursor: pointer; 
    font-size: 18px; 
    padding: 5px; 
    border-radius: 4px; 
    transition: background 0.3s; 
}

.delete-btn:hover { background: #f8d7da; }

/* Document Preview */
#previewModal .preview-modal-content {
    width: min(96vw, 1400px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

#previewModal .preview-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
}

#previewModal .preview-actions {
    position: sticky;
    bottom: 0;
    margin-top: 14px;
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    background: linear-gradient(to bottom, rgba(255,255,255,0.92), #fff 20%);
}

.document-preview { 
    background: white; 
    padding: 34px; 
    max-width: 850px; 
    margin: 0 auto; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    color: #333; 
    line-height: 1.4; 
}

/* BOSS Logo sizing for preview and print */
.document-preview img {
    max-width: 150px;
    height: auto;
}

.document-preview .doc-title { 
    font-size: 56px; 
    font-weight: 900; 
    color: #1a1a1a; 
    letter-spacing: 2px; 
    margin-bottom: 5px; 
    text-transform: uppercase; 
    line-height: 1; 
}

.document-preview .doc-company-name { 
    font-size: 16px; 
    font-weight: 600; 
    color: #333; 
    margin-bottom: 3px; 
}

.document-preview .doc-company-address { 
    font-size: 13px; 
    color: #666; 
    line-height: 1.5; 
}

.document-preview .doc-info-section { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1.2fr; 
    gap: 40px; 
    margin-bottom: 30px; 
    font-size: 13px; 
}

.document-preview .doc-info-block { line-height: 1.6; }

.document-preview .doc-info-label { 
    font-weight: 700; 
    color: #1a1a1a; 
    text-transform: uppercase; 
    font-size: 11px; 
    letter-spacing: 0.5px; 
    margin-bottom: 8px; 
}

.document-preview .doc-divider { 
    border: none; 
    border-top: 2px solid #1a1a1a; 
    margin: 20px 0 15px 0; 
}

.document-preview .doc-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 20px 0; 
}

.document-preview .doc-table th { 
    background: transparent; 
    border-bottom: 2px solid #1a1a1a; 
    padding: 10px 5px; 
    text-align: left; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 0.5px; 
}

.document-preview .doc-table td { 
    padding: 12px 5px; 
    border-bottom: 1px solid #ddd; 
}

.document-preview .doc-table td:last-child, 
.document-preview .doc-table th:last-child { text-align: right; }

.document-preview .doc-totals { 
    text-align: right; 
    margin-top: 20px; 
    font-size: 14px; 
}

.document-preview .doc-totals-row { margin-bottom: 8px; }

.document-preview .doc-total-final { 
    font-size: 20px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin-top: 10px; 
    padding-top: 10px; 
    border-top: 2px solid #1a1a1a; 
}

.document-preview .doc-footer { 
    margin-top: 60px; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
}

.document-preview .doc-thank-you { 
    font-size: 32px; 
    font-family: 'Brush Script MT', cursive; 
    color: #1a1a1a; 
}

.document-preview .doc-terms { 
    text-align: left; 
    font-size: 12px; 
    color: #666; 
    max-width: 300px; 
}

.document-preview .doc-terms-title { 
    font-weight: 700; 
    color: #ff8c00; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    font-size: 13px; 
}

/* Settings */
.settings-container { display: grid; gap: 25px; }

.settings-card { 
    background: var(--card-bg); 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    overflow: hidden; 
}

.settings-card-header { 
    padding: 20px 25px; 
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%); 
    color: white; 
}

.settings-card-header h3 { margin: 0 0 8px 0; font-size: 18px; }
.settings-card-header p { margin: 0; color: #aaa; font-size: 13px; }

.settings-card-body { padding: 25px; }

.info-row { 
    display: flex; 
    justify-content: space-between; 
    padding: 12px 0; 
    border-bottom: 1px solid var(--border); 
}

.info-row:last-child { border-bottom: none; }

.info-label { font-weight: 600; color: var(--secondary); }
.info-value { color: #666; }

.settings-success { 
    background: #d4edda; 
    color: #155724; 
    padding: 12px 20px; 
    border-radius: 6px; 
    margin-bottom: 20px; 
    display: none; 
}

.settings-success.show { display: block; animation: fadeIn 0.3s; }

/* Excel Import */
.import-drop-zone {
    border: 3px dashed var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s;
    cursor: pointer;
}

.import-drop-zone:hover, .import-drop-zone.drag-over {
    border-color: var(--primary);
    background: rgba(255, 140, 0, 0.05);
}

.import-drop-zone.drag-over { transform: scale(1.02); }

.import-icon { font-size: 48px; margin-bottom: 15px; }
.import-text { font-size: 18px; color: var(--secondary); margin-bottom: 10px; }
.import-subtext { font-size: 14px; color: #666; }
.import-file-input { display: none; }

.import-preview-table {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.import-preview-table table { width: 100%; font-size: 13px; }

.import-preview-table th {
    background: var(--primary);
    color: white;
    padding: 10px;
    text-align: left;
    position: sticky;
    top: 0;
}

.import-preview-table td { padding: 8px 10px; border-bottom: 1px solid var(--border); }
.import-preview-table tr:nth-child(even) { background: #f8f9fa; }

.import-progress { margin-top: 20px; }

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

.import-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.import-stat {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.import-stat-value { font-size: 24px; font-weight: 700; color: var(--primary); }
.import-stat-label { font-size: 12px; color: #666; margin-top: 5px; }

.mapping-row {
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    gap: 15px;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

.mapping-select {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.mapping-select:focus { border-color: var(--primary); outline: none; }

.sheet-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }

.sheet-tab {
    padding: 8px 16px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

.sheet-tab.active, .sheet-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.debug-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

/* Login */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-overlay.hidden { display: none; }

.login-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo img { max-width: 140px; height: auto; }
.login-logo .boss-logo-svg { width: 200px; max-width: 100%; height: auto; }
.logo-container .boss-logo-svg { width: 100%; max-width: 180px; }

.login-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
}

.login-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.login-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.login-panel { display: none; }
.login-panel.active { display: block; }

.login-form .form-group { margin-bottom: 20px; }
.login-form label { margin-bottom: 8px; display: block; }

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}

.login-form input:focus { border-color: var(--primary); outline: none; }

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me { display: flex; align-items: center; gap: 8px; cursor: pointer; }

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.forgot-password:hover { text-decoration: underline; }

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover { background: var(--primary-dark); }

.login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
}

.login-error.show { display: block; }

.about-content { color: #666; line-height: 1.6; }
.about-content h3 { color: var(--secondary); margin-bottom: 15px; }
.about-content p { margin-bottom: 15px; }

/* Inventory specific */
#inventoryTable td { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 14px; 
    font-weight: 400; 
}

#inventoryTable td code { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    font-size: 14px; 
    background: none; 
    padding: 0; 
}