curaflow/billing.html

138 lines
5.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curio Billing | Hospital Revenue & Accounts</title>
<link rel="stylesheet" href="globals.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="dashboard.css">
<link rel="stylesheet" href="billing.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap" rel="stylesheet">
</head>
<body class="dashboard-body">
<aside class="sidebar">
<div class="logo">
<div class="logo-icon">C</div>
<span class="logo-text">Curio</span>
</div>
<nav class="side-nav">
<a href="dashboard.html"><span>🏠</span> Overview</a>
<a href="dashboard.html" onclick="showSection('queue')"><span>👥</span> Queue</a>
<a href="dashboard.html" onclick="showSection('patients')"><span>📂</span> Patients</a>
<a href="pharmacy.html"><span>💊</span> Pharmacy</a>
<a href="lab.html"><span>🔬</span> Lab</a>
<a href="billing.html" class="active"><span>💳</span> Billing & Accounts</a>
<a href="staff.html"><span>👔</span> Staff & Payroll</a>
<a href="settings.html"><span>⚙️</span> Settings</a>
</nav>
<div class="user-profile">
<div class="avatar">BA</div>
<div class="info">
<strong>Billing Admin</strong>
<span>Staff</span>
<a href="login.html" class="logout-btn"><span>🚪</span> Logout</a>
</div>
</div>
</aside>
<main class="dashboard-main">
<header class="dash-header">
<div class="header-title">
<h1>Hospital Accounts</h1>
<p>Comprehensive daily revenue summary for the Hospital Owner.</p>
</div>
<div class="header-actions">
<button class="btn-primary">Download Day Report (PDF)</button>
</div>
</header>
<section class="stats-row">
<div class="stat-card total-card">
<span>Total Revenue (Today)</span>
<h3>₹25,150</h3>
<small class="text-accent">↑ 12.5% vs Yesterday</small>
</div>
<div class="stat-card">
<span>OP Consultation</span>
<h3>₹4,500</h3>
<small>9 Patients Paid</small>
</div>
<div class="stat-card">
<span>Pharmacy Sales</span>
<h3>₹12,450</h3>
<small>18 Invoices</small>
</div>
<div class="stat-card">
<span>Lab Collections</span>
<h3>₹8,200</h3>
<small>12 Tests</small>
</div>
</section>
<section class="revenue-grid">
<div class="section-card chart-container">
<div class="card-header">
<h2>Revenue Distribution</h2>
</div>
<div class="donut-chart-simulation">
<!-- Placeholder for Chart.js -->
<div class="chart-mock">
<div class="slice op" style="--val: 18;"></div>
<div class="slice phar" style="--val: 50;"></div>
<div class="slice lab" style="--val: 32;"></div>
</div>
<div class="chart-legend">
<div class="legend-item"><span class="dot op"></span> OP (18%)</div>
<div class="legend-item"><span class="dot phar"></span> Pharmacy (50%)</div>
<div class="legend-item"><span class="dot lab"></span> Lab (32%)</div>
</div>
</div>
</div>
<div class="section-card">
<div class="card-header">
<h2>Recent Transactions</h2>
</div>
<table class="queue-table">
<thead>
<tr>
<th>Txn ID</th>
<th>Patient</th>
<th>Department</th>
<th>Amount</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>#TXN-882</td>
<td><strong>Vikram Goel</strong></td>
<td>Pharmacy</td>
<td>₹1,240</td>
<td><span class="status-pill in-room">Paid</span></td>
</tr>
<tr>
<td>#TXN-881</td>
<td><strong>Ananya Rao</strong></td>
<td>Lab</td>
<td>₹2,500</td>
<td><span class="status-pill in-room">Paid</span></td>
</tr>
<tr>
<td>#TXN-880</td>
<td><strong>Rahul Verma</strong></td>
<td>OP</td>
<td>₹500</td>
<td><span class="status-pill waiting">Pending</span></td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
</body>
</html>