new updates
Build Curio HMS / build-and-deploy (push) Successful in 50s
Details
Build Curio HMS / build-and-deploy (push) Successful in 50s
Details
This commit is contained in:
parent
b24f10b373
commit
de0c19adb7
|
|
@ -0,0 +1,258 @@
|
|||
/* Curio Central — platform admin shell */
|
||||
|
||||
:root {
|
||||
--admin-bg: var(--bg);
|
||||
--admin-card: var(--surface);
|
||||
--admin-primary: var(--primary);
|
||||
--admin-accent: var(--secondary);
|
||||
}
|
||||
|
||||
body.admin-body {
|
||||
background: var(--admin-bg);
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
.admin-sidebar {
|
||||
width: var(--sidebar-width);
|
||||
background: var(--admin-primary);
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
padding: 2rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.admin-sidebar .logo,
|
||||
.admin-sidebar .logo-text {
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.admin-sidebar .logo-icon {
|
||||
background: var(--admin-accent);
|
||||
}
|
||||
|
||||
.admin-sidebar .side-nav {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.admin-sidebar .side-nav a {
|
||||
color: #94A3B8;
|
||||
}
|
||||
|
||||
.admin-sidebar .side-nav a:hover,
|
||||
.admin-sidebar .side-nav a.active {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.admin-sidebar .user-profile {
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
}
|
||||
|
||||
.admin-sidebar .user-profile strong {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.admin-sidebar .user-profile span {
|
||||
color: #94A3B8;
|
||||
}
|
||||
|
||||
.admin-sidebar .logout-link {
|
||||
color: #FDA4AF;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.admin-sidebar .logout-link:hover {
|
||||
color: #FCA5A5;
|
||||
}
|
||||
|
||||
.admin-main {
|
||||
margin-left: var(--sidebar-width);
|
||||
padding: 3rem;
|
||||
}
|
||||
|
||||
.admin-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 3rem;
|
||||
gap: 1.5rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.admin-header h1 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 2.2rem;
|
||||
color: var(--admin-primary);
|
||||
}
|
||||
|
||||
.admin-header p {
|
||||
color: var(--text-muted);
|
||||
margin-top: 0.35rem;
|
||||
}
|
||||
|
||||
.admin-main .btn-primary {
|
||||
background: var(--admin-accent);
|
||||
}
|
||||
|
||||
.admin-main .btn-primary:hover {
|
||||
background: var(--secondary-hover);
|
||||
}
|
||||
|
||||
.stat-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.admin-body .stat-card {
|
||||
background: var(--admin-card);
|
||||
padding: 2rem;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.admin-body .stat-card span {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.admin-body .stat-card h3 {
|
||||
font-size: 2rem;
|
||||
margin: 0.5rem 0;
|
||||
color: var(--admin-primary);
|
||||
}
|
||||
|
||||
.admin-body .stat-card .trend {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.trend.up {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.trend.down {
|
||||
color: var(--urgent);
|
||||
}
|
||||
|
||||
.trend.positive {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.admin-body .health-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
background: #ECFDF5;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 100px;
|
||||
color: var(--accent);
|
||||
font-weight: 700;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.admin-body .pulse {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: #10B981;
|
||||
border-radius: 50%;
|
||||
animation: admin-pulse-ring 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes admin-pulse-ring {
|
||||
0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
|
||||
70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
|
||||
100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
|
||||
}
|
||||
|
||||
.tenant-table-container {
|
||||
background: var(--admin-card);
|
||||
border-radius: 32px;
|
||||
padding: 2rem;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.tenant-table-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
gap: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tenant-table-container h2 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 1.5rem;
|
||||
color: var(--admin-primary);
|
||||
}
|
||||
|
||||
.tenant-table-container table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.tenant-table-container th {
|
||||
text-align: left;
|
||||
padding: 1rem;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
border-bottom: 2px solid var(--border);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.tenant-table-container td {
|
||||
padding: 1.5rem 1rem;
|
||||
border-bottom: 1px solid var(--border);
|
||||
font-weight: 500;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.tenant-table-container tbody tr:hover {
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
padding: 0.4rem 0.8rem;
|
||||
border-radius: 100px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.status-badge.active {
|
||||
background: #DCFCE7;
|
||||
color: #15803D;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.admin-main {
|
||||
margin-left: 0;
|
||||
padding: 1.5rem;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
.admin-sidebar {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.admin-sidebar .user-profile {
|
||||
position: static;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
163
admin.html
163
admin.html
|
|
@ -4,165 +4,30 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio Central | Mission Control</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--admin-bg: #F8FAFC;
|
||||
--admin-card: #FFFFFF;
|
||||
--admin-primary: #0F172A;
|
||||
--admin-accent: #3B82F6;
|
||||
}
|
||||
|
||||
body.admin-body {
|
||||
background: var(--admin-bg);
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
.admin-sidebar {
|
||||
width: 280px;
|
||||
background: var(--admin-primary);
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
padding: 2rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.admin-main {
|
||||
margin-left: 280px;
|
||||
padding: 3rem;
|
||||
}
|
||||
|
||||
.admin-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.admin-header h1 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 2.2rem;
|
||||
color: var(--admin-primary);
|
||||
}
|
||||
|
||||
.stat-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.03);
|
||||
border: 1px solid #F1F5F9;
|
||||
}
|
||||
|
||||
.stat-card span {
|
||||
font-size: 0.85rem;
|
||||
color: #64748B;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.stat-card h3 {
|
||||
font-size: 2rem;
|
||||
margin: 0.5rem 0;
|
||||
color: var(--admin-primary);
|
||||
}
|
||||
|
||||
.stat-card .trend {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.trend.up { color: #10B981; }
|
||||
.trend.down { color: #EF4444; }
|
||||
|
||||
.health-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
background: #ECFDF5;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 100px;
|
||||
color: #059669;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.pulse {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: #10B981;
|
||||
border-radius: 50%;
|
||||
animation: pulse-ring 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse-ring {
|
||||
0% { transform: scale(.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
|
||||
70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
|
||||
100% { transform: scale(.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
|
||||
}
|
||||
|
||||
.tenant-table-container {
|
||||
background: white;
|
||||
border-radius: 32px;
|
||||
padding: 2rem;
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.03);
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
padding: 1rem;
|
||||
color: #64748B;
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 2px solid #F1F5F9;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 1.5rem 1rem;
|
||||
border-bottom: 1px solid #F1F5F9;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
padding: 0.4rem 0.8rem;
|
||||
border-radius: 100px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.status-badge.active { background: #DCFCE7; color: #15803D; }
|
||||
</style>
|
||||
<link rel="stylesheet" href="admin.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="admin-body">
|
||||
<aside class="admin-sidebar">
|
||||
<div class="logo">
|
||||
<span class="logo-icon" style="background: var(--admin-accent);">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio Central</span>
|
||||
</div>
|
||||
<nav class="side-nav" style="margin-top: 3rem;">
|
||||
<nav class="side-nav">
|
||||
<a href="#" class="active">📊 Platform Overview</a>
|
||||
<a href="#">🏥 Hospital Tenants</a>
|
||||
<a href="#">💳 Subscription Billing</a>
|
||||
<a href="#">🛡️ Security & Logs</a>
|
||||
<a href="#">⚙️ Global Settings</a>
|
||||
</nav>
|
||||
<div class="user-profile" style="position: absolute; bottom: 2rem;">
|
||||
<div class="user-profile">
|
||||
<strong>Super Admin</strong>
|
||||
<span>admin@curio.app</span>
|
||||
<a href="login.html" style="color: #FDA4AF; text-decoration: none; display: block; margin-top: 1rem;">Logout</a>
|
||||
<a href="login.html" class="logout-link">Logout</a>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
|
|
@ -170,7 +35,7 @@
|
|||
<header class="admin-header">
|
||||
<div>
|
||||
<h1>Platform Command Center</h1>
|
||||
<p style="color: #64748B;">Real-time analytics across all registered hospital networks.</p>
|
||||
<p>Real-time analytics across all registered hospital networks.</p>
|
||||
</div>
|
||||
<div class="health-indicator">
|
||||
<span class="pulse"></span>
|
||||
|
|
@ -197,14 +62,14 @@
|
|||
<div class="stat-card">
|
||||
<span>Avg. Performance</span>
|
||||
<h3>240ms</h3>
|
||||
<div class="trend down" style="color: #10B981;">↓ 20ms faster</div>
|
||||
<div class="trend positive">↓ 20ms faster</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tenant-table-container">
|
||||
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;">
|
||||
<h2 style="font-family: 'Outfit';">Hospital Tenants</h2>
|
||||
<button class="btn-primary" style="background: var(--admin-accent);">+ Add New Hospital</button>
|
||||
<div class="tenant-table-header">
|
||||
<h2>Hospital Tenants</h2>
|
||||
<button class="btn btn-primary">+ Add New Hospital</button>
|
||||
</div>
|
||||
<table>
|
||||
<thead>
|
||||
|
|
|
|||
15
billing.css
15
billing.css
|
|
@ -1,10 +1,19 @@
|
|||
.total-card {
|
||||
background: linear-gradient(135deg, var(--primary), #1E293B);
|
||||
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
||||
color: white;
|
||||
}
|
||||
|
||||
.total-card span {
|
||||
color: #94A3B8;
|
||||
.total-card span,
|
||||
.total-card small {
|
||||
color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
|
||||
.total-card h3 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.total-card .text-accent {
|
||||
color: #6EE7B7;
|
||||
}
|
||||
|
||||
.revenue-grid {
|
||||
|
|
|
|||
|
|
@ -4,15 +4,18 @@
|
|||
<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 href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
812
dashboard.css
812
dashboard.css
|
|
@ -1,26 +1,6 @@
|
|||
/* --- CURIO MASTER DESIGN SYSTEM --- */
|
||||
/* --- DASHBOARD STYLES --- */
|
||||
:root {
|
||||
--primary: #0F172A;
|
||||
--secondary: #3B82F6;
|
||||
--accent: #10B981;
|
||||
--urgent: #EF4444;
|
||||
--bg: #F8FAFC;
|
||||
--sidebar-bg: #0F172A;
|
||||
--border: #E2E8F0;
|
||||
--text-main: #1E293B;
|
||||
--text-muted: #64748B;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
/* Dashboard specific overrides if any */
|
||||
}
|
||||
|
||||
/* Layout Foundation */
|
||||
|
|
@ -30,14 +10,15 @@ body {
|
|||
}
|
||||
|
||||
.sidebar {
|
||||
width: 280px;
|
||||
width: var(--sidebar-width);
|
||||
background: var(--sidebar-bg);
|
||||
color: white;
|
||||
padding: 2rem;
|
||||
padding: 2.5rem 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.dashboard-main {
|
||||
|
|
@ -54,6 +35,10 @@ body {
|
|||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.logo, .logo-text {
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.logo-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
|
@ -62,7 +47,9 @@ body {
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-weight: 800;
|
||||
color: white;
|
||||
font-family: 'Outfit', sans-serif;
|
||||
}
|
||||
|
||||
.side-nav {
|
||||
|
|
@ -84,33 +71,91 @@ body {
|
|||
}
|
||||
|
||||
.side-nav a:hover, .side-nav a.active {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
background: var(--sidebar-active);
|
||||
color: white;
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
.user-profile {
|
||||
margin-top: auto;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.user-profile .info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.15rem;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.user-profile .info strong {
|
||||
color: white;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.user-profile .info span {
|
||||
color: #94A3B8;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 10px;
|
||||
background: var(--secondary);
|
||||
color: white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-size: 0.8rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.logout-btn {
|
||||
margin-top: 0.5rem;
|
||||
padding: 0.5rem 0;
|
||||
color: #F87171;
|
||||
text-decoration: none;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
border-radius: 8px;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.logout-btn:hover {
|
||||
color: #FCA5A5;
|
||||
}
|
||||
|
||||
.sidebar > .logout-btn {
|
||||
margin-top: auto;
|
||||
padding: 0.75rem 1rem;
|
||||
}
|
||||
|
||||
.sidebar > .logout-btn:hover {
|
||||
background: rgba(239, 68, 68, 0.12);
|
||||
}
|
||||
|
||||
/* Global Component Classes */
|
||||
.btn-primary {
|
||||
background: var(--secondary);
|
||||
color: white;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 12px;
|
||||
border: none;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background: white;
|
||||
padding: 1.5rem;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.03);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-sm);
|
||||
border: 1px solid var(--border);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.stat-card:hover {
|
||||
box-shadow: var(--shadow);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* --- WORLD-CLASS ZEN 3.0 & ADMIN ADD-ONS --- */
|
||||
|
|
@ -152,9 +197,9 @@ body {
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-zen.scribe { background: #0EA5E9; color: white; }
|
||||
.btn-zen.history { background: white; color: #475569; border: 1px solid #E2E8F0; }
|
||||
.btn-zen.start { background: #0F172A; color: white; }
|
||||
.btn-zen.scribe { background: var(--secondary); color: white; }
|
||||
.btn-zen.history { background: white; color: var(--text-muted); border: 1px solid var(--border); }
|
||||
.btn-zen.start { background: var(--primary); color: white; }
|
||||
|
||||
.note-canvas-container {
|
||||
background: white;
|
||||
|
|
@ -235,5 +280,690 @@ body {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
/* --- Dashboard page layout & components --- */
|
||||
.dash-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.dash-header .header-title h1,
|
||||
.dash-header .welcome h1 {
|
||||
font-size: 2rem;
|
||||
color: var(--text-main);
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
|
||||
.dash-header .header-title p,
|
||||
.dash-header .welcome p {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.95rem;
|
||||
max-width: 42rem;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.search-bar {
|
||||
flex: 1;
|
||||
min-width: 220px;
|
||||
max-width: 480px;
|
||||
}
|
||||
|
||||
.search-bar input {
|
||||
width: 100%;
|
||||
padding: 0.875rem 1.25rem;
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-main);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.search-bar input::placeholder {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.search-bar input:focus {
|
||||
outline: none;
|
||||
border-color: var(--secondary);
|
||||
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
|
||||
}
|
||||
|
||||
.date-picker-group {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.date-input {
|
||||
padding: 0.5rem 0.75rem;
|
||||
border-radius: var(--radius-sm);
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
color: var(--text-main);
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.counter-badge {
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.stats-row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
gap: 1.25rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.stat-card span {
|
||||
display: block;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.stat-card h3 {
|
||||
font-size: 1.75rem;
|
||||
color: var(--text-main);
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
|
||||
.stat-card small {
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.section-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--border);
|
||||
padding: 1.5rem;
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
|
||||
.card-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.card-header h2 {
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.card-header h3 {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.filters {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.queue-section {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 320px;
|
||||
gap: 1.5rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.side-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.queue-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.queue-table thead th {
|
||||
text-align: left;
|
||||
padding: 0.75rem 1rem;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
border-bottom: 2px solid var(--border);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.queue-table tbody td {
|
||||
padding: 1rem;
|
||||
border-bottom: 1px solid var(--border);
|
||||
color: var(--text-main);
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.queue-table tbody tr:hover {
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.queue-table tbody tr.active-row {
|
||||
background: rgba(37, 99, 235, 0.04);
|
||||
}
|
||||
|
||||
.status-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 0.3rem 0.75rem;
|
||||
border-radius: 99px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.status-pill.in-room {
|
||||
background: rgba(16, 185, 129, 0.12);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.status-pill.waiting {
|
||||
background: rgba(245, 158, 11, 0.12);
|
||||
color: #B45309;
|
||||
}
|
||||
|
||||
.status-pill.pending-pay {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
color: var(--urgent);
|
||||
}
|
||||
|
||||
.status-pill.paid {
|
||||
background: #DCFCE7;
|
||||
color: #166534;
|
||||
}
|
||||
|
||||
.triage-pill {
|
||||
display: inline-flex;
|
||||
padding: 0.25rem 0.65rem;
|
||||
border-radius: 99px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.triage-pill.urgent {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
color: var(--urgent);
|
||||
}
|
||||
|
||||
.triage-pill.moderate {
|
||||
background: rgba(245, 158, 11, 0.1);
|
||||
color: #B45309;
|
||||
}
|
||||
|
||||
.triage-pill.routine {
|
||||
background: rgba(37, 99, 235, 0.08);
|
||||
color: var(--secondary);
|
||||
}
|
||||
|
||||
.source-tag {
|
||||
display: inline-flex;
|
||||
padding: 0.2rem 0.6rem;
|
||||
border-radius: 6px;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.source-tag.online {
|
||||
background: rgba(37, 99, 235, 0.1);
|
||||
color: var(--secondary);
|
||||
}
|
||||
|
||||
.source-tag.walkin {
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.lang-tag {
|
||||
display: inline-flex;
|
||||
padding: 0.2rem 0.5rem;
|
||||
border-radius: 6px;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
padding: 0.45rem 0.9rem;
|
||||
border-radius: var(--radius-sm);
|
||||
border: none;
|
||||
background: var(--secondary);
|
||||
color: white;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.btn-small:hover {
|
||||
background: var(--secondary-hover);
|
||||
}
|
||||
|
||||
.btn-small.secondary {
|
||||
background: var(--surface);
|
||||
color: var(--text-main);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.btn-small.secondary:hover {
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.quota-bars {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.quota-item small {
|
||||
display: block;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
|
||||
.bar {
|
||||
height: 8px;
|
||||
background: var(--bg);
|
||||
border-radius: 99px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bar .fill {
|
||||
height: 100%;
|
||||
background: var(--secondary);
|
||||
border-radius: 99px;
|
||||
}
|
||||
|
||||
.ai-insights h3 {
|
||||
color: var(--text-main);
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.ai-insights p,
|
||||
.insight-item p {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.insight-item {
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.insight-item small {
|
||||
color: var(--text-muted);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Zen clinical workspace */
|
||||
.zen-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 280px 1fr;
|
||||
gap: 1.5rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.zen-pipeline {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--border);
|
||||
padding: 1.25rem;
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
|
||||
.pipeline-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.pipeline-header h3 {
|
||||
font-size: 1rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.pipeline-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.pipeline-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 0.875rem;
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid var(--border);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.pipeline-item:hover {
|
||||
border-color: var(--secondary);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.pipeline-item.next {
|
||||
border-color: var(--secondary);
|
||||
background: rgba(37, 99, 235, 0.05);
|
||||
}
|
||||
|
||||
.p-token {
|
||||
font-weight: 700;
|
||||
color: var(--secondary);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.p-info strong {
|
||||
display: block;
|
||||
color: var(--text-main);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.p-info span {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.meta-pills {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.pill {
|
||||
display: inline-flex;
|
||||
padding: 0.25rem 0.65rem;
|
||||
border-radius: 99px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
background: var(--bg);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.pill.active {
|
||||
background: rgba(16, 185, 129, 0.12);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.pill.triage {
|
||||
background: rgba(37, 99, 235, 0.08);
|
||||
color: var(--secondary);
|
||||
}
|
||||
|
||||
.lang-select {
|
||||
padding: 0.5rem 0.75rem;
|
||||
border-radius: var(--radius-sm);
|
||||
border: 1px solid var(--border);
|
||||
background: white;
|
||||
color: var(--text-main);
|
||||
font-family: inherit;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.scribe-status-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.75rem 1rem;
|
||||
background: rgba(16, 185, 129, 0.08);
|
||||
color: var(--accent);
|
||||
border-radius: var(--radius-md);
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.zen-textarea {
|
||||
color: var(--text-main);
|
||||
background: transparent;
|
||||
resize: vertical;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.zen-textarea::placeholder {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.zen-textarea:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.summary-card {
|
||||
margin-top: 1.5rem;
|
||||
padding: 1.25rem;
|
||||
background: var(--bg);
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.summary-card .card-header {
|
||||
margin-bottom: 0.75rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.summary-content {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.summary-actions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.vital-item .label {
|
||||
font-size: 0.7rem;
|
||||
color: var(--text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.vital-item .value {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-main);
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.vital-item.warning .value {
|
||||
color: var(--urgent);
|
||||
}
|
||||
|
||||
.suggested-tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.suggested-tags span {
|
||||
padding: 0.35rem 0.75rem;
|
||||
background: var(--bg);
|
||||
border-radius: 99px;
|
||||
font-size: 0.8rem;
|
||||
color: var(--secondary);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.zen-sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.insight-card .card-header,
|
||||
.ai-nudge-box .card-header {
|
||||
font-weight: 600;
|
||||
color: var(--text-main);
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
/* Modal */
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(15, 23, 42, 0.5);
|
||||
z-index: 2000;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.modal.open {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-lg);
|
||||
width: 100%;
|
||||
max-width: 720px;
|
||||
max-height: 90vh;
|
||||
overflow: auto;
|
||||
box-shadow: var(--shadow-xl);
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1.5rem;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.modal-header h2 {
|
||||
color: var(--text-main);
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.close-modal {
|
||||
font-size: 1.5rem;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
line-height: 1;
|
||||
padding: 0.25rem;
|
||||
}
|
||||
|
||||
.close-modal:hover {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 1.5rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
padding: 1rem 1.5rem;
|
||||
border-top: 1px solid var(--border);
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
/* Mobile sidebar */
|
||||
.sidebar-mobile-toggle {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 1rem;
|
||||
left: 1rem;
|
||||
z-index: 1100;
|
||||
padding: 0.6rem 1rem;
|
||||
background: var(--sidebar-bg);
|
||||
color: white;
|
||||
border-radius: var(--radius-sm);
|
||||
font-weight: 600;
|
||||
font-size: 0.875rem;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.queue-section,
|
||||
.zen-layout,
|
||||
.zen-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.revenue-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sidebar-mobile-toggle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.3s ease;
|
||||
z-index: 1050;
|
||||
}
|
||||
|
||||
.sidebar.open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.dashboard-main {
|
||||
margin-left: 0;
|
||||
padding: 1.25rem;
|
||||
padding-top: 4rem;
|
||||
}
|
||||
|
||||
.dash-header {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.search-bar {
|
||||
max-width: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Utility Hidden */
|
||||
.hidden { display: none !important; }
|
||||
|
|
|
|||
|
|
@ -4,9 +4,12 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Dashboard | Curio</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<script src="tenantLoader.js"></script>
|
||||
</head>
|
||||
<body class="dashboard-body">
|
||||
|
|
@ -40,12 +43,12 @@
|
|||
<main class="dashboard-main">
|
||||
<header class="dash-header">
|
||||
<div class="search-bar">
|
||||
<input type="text" placeholder="Search patients by name or WhatsApp number...">
|
||||
<input type="text" id="patientSearch" placeholder="Search patients by name or WhatsApp number..." aria-label="Search patients">
|
||||
</div>
|
||||
<div class="header-actions">
|
||||
<div class="date-picker-group">
|
||||
<label for="queueDate">Select Date:</label>
|
||||
<input type="date" id="queueDate" class="date-input">
|
||||
<input type="date" id="queueDate" class="date-input" aria-label="Queue Date">
|
||||
</div>
|
||||
<span class="badge counter-badge">Reception Counter: 1</span>
|
||||
<button class="btn-primary" id="newWalkinBtn">+ New Walk-in (Print Token)</button>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,203 @@
|
|||
:root {
|
||||
/* Core Palette - Premium Healthcare Aesthetic */
|
||||
--primary: #0F172A;
|
||||
--primary-light: #1E293B;
|
||||
--secondary: #2563EB; /* Darker blue for better contrast */
|
||||
--secondary-hover: #1D4ED8;
|
||||
--accent: #059669; /* Darker green for accessibility */
|
||||
--accent-hover: #047857;
|
||||
--urgent: #EF4444;
|
||||
--warning: #F59E0B;
|
||||
|
||||
/* Backgrounds & Surfaces */
|
||||
--bg: #F8FAFC;
|
||||
--surface: #FFFFFF;
|
||||
--sidebar-bg: #0F172A;
|
||||
--sidebar-active: rgba(255, 255, 255, 0.1);
|
||||
|
||||
/* Typography */
|
||||
--text-main: #0F172A;
|
||||
--text-muted: #475569; /* Darker grey for better contrast */
|
||||
--text-white: #FFFFFF;
|
||||
|
||||
/* Effects */
|
||||
--glass: rgba(255, 255, 255, 0.7);
|
||||
--glass-border: rgba(255, 255, 255, 0.3);
|
||||
--border: #E2E8F0;
|
||||
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||||
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||
|
||||
/* Transitions */
|
||||
--transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
|
||||
/* Layout */
|
||||
--radius-sm: 8px;
|
||||
--radius-md: 12px;
|
||||
--radius-lg: 20px;
|
||||
--radius-xl: 32px;
|
||||
--sidebar-width: 280px;
|
||||
}
|
||||
|
||||
/* Base Resets & Typography */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, .logo-text {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-weight: 700;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
/* Common UI Components */
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: var(--radius-md);
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
border: none;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--secondary);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: var(--secondary-hover);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: white;
|
||||
color: var(--text-main);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: var(--bg);
|
||||
border-color: var(--text-muted);
|
||||
}
|
||||
|
||||
.btn-accent {
|
||||
background: var(--accent);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-accent:hover {
|
||||
background: var(--accent-hover);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--border);
|
||||
padding: 1.5rem;
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.glass-panel {
|
||||
background: var(--glass);
|
||||
backdrop-filter: blur(12px);
|
||||
border: 1px solid var(--glass-border);
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 99px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--accent); }
|
||||
.badge-urgent { background: rgba(239, 68, 68, 0.1); color: var(--urgent); }
|
||||
.badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
|
||||
.badge-info { background: rgba(59, 130, 246, 0.1); color: var(--secondary); }
|
||||
.badge.muted { background: var(--bg); color: var(--text-muted); }
|
||||
|
||||
/* Text utilities */
|
||||
.text-muted { color: var(--text-muted); }
|
||||
.text-accent { color: var(--accent); }
|
||||
.text-urgent { color: var(--urgent); }
|
||||
|
||||
/* Animations */
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.animate-fade {
|
||||
animation: fadeIn 0.4s ease-out forwards;
|
||||
}
|
||||
|
||||
@keyframes pulse-soft {
|
||||
0% { transform: scale(1); opacity: 1; }
|
||||
50% { transform: scale(1.05); opacity: 0.8; }
|
||||
100% { transform: scale(1); opacity: 1; }
|
||||
}
|
||||
|
||||
.pulse-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: var(--accent);
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
animation: pulse-soft 2s infinite;
|
||||
}
|
||||
|
||||
/* Scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: var(--border);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: var(--text-muted);
|
||||
}
|
||||
92
index.css
92
index.css
|
|
@ -1,34 +1,7 @@
|
|||
/* index.css - Landing Page Specific Styles */
|
||||
|
||||
:root {
|
||||
--primary: #0F172A;
|
||||
--secondary: #38BDF8;
|
||||
--accent: #10B981;
|
||||
--bg: #F8FAFC;
|
||||
--surface: #FFFFFF;
|
||||
--text-main: #1E293B;
|
||||
--text-muted: #64748B;
|
||||
--glass: rgba(255, 255, 255, 0.7);
|
||||
--border: rgba(226, 232, 240, 0.8);
|
||||
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: var(--bg);
|
||||
color: var(--text-main);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-weight: 700;
|
||||
/* Local overrides if any, otherwise uses globals.css */
|
||||
}
|
||||
|
||||
.container {
|
||||
|
|
@ -58,7 +31,7 @@ h1, h2, h3 {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.logo {
|
||||
.glass-nav .logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
|
|
@ -90,7 +63,6 @@ h1, h2, h3 {
|
|||
text-decoration: none;
|
||||
color: var(--text-muted);
|
||||
font-weight: 500;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
|
|
@ -110,7 +82,7 @@ h1, h2, h3 {
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
.badge {
|
||||
.landing-page .hero .badge {
|
||||
display: inline-block;
|
||||
padding: 0.5rem 1rem;
|
||||
background: rgba(16, 185, 129, 0.1);
|
||||
|
|
@ -121,7 +93,7 @@ h1, h2, h3 {
|
|||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
.landing-page h1 {
|
||||
font-size: 4rem;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 1.5rem;
|
||||
|
|
@ -147,7 +119,7 @@ h1 {
|
|||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
.landing-page .btn-primary {
|
||||
background: var(--primary);
|
||||
color: white;
|
||||
padding: 1rem 2rem;
|
||||
|
|
@ -156,7 +128,7 @@ h1 {
|
|||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
|
||||
transition: var(--transition);
|
||||
user-select: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
@ -164,16 +136,13 @@ h1 {
|
|||
min-height: 48px;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: #1e293b;
|
||||
.landing-page .btn-primary:hover {
|
||||
background: var(--primary-light);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.btn-primary:active {
|
||||
transform: scale(0.96);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
.landing-page .btn-secondary {
|
||||
background: white;
|
||||
color: var(--primary);
|
||||
padding: 1rem 2rem;
|
||||
|
|
@ -182,7 +151,7 @@ h1 {
|
|||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
transition: var(--transition);
|
||||
user-select: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
@ -190,16 +159,13 @@ h1 {
|
|||
min-height: 48px;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
.landing-page .btn-secondary:hover {
|
||||
background: var(--bg);
|
||||
border-color: var(--text-muted);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.btn-secondary:active {
|
||||
transform: scale(0.96);
|
||||
}
|
||||
|
||||
.btn-lg {
|
||||
.landing-page .btn-lg {
|
||||
padding: 1.25rem 2.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
|
@ -445,7 +411,7 @@ footer {
|
|||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
.hero h1 { font-size: 3rem; }
|
||||
.landing-page .hero h1 { font-size: 3rem; }
|
||||
.hero-btns { justify-content: center; }
|
||||
.hero-stats { justify-content: center; }
|
||||
.chat-container { grid-template-columns: 1fr; }
|
||||
|
|
@ -535,27 +501,3 @@ footer {
|
|||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* Logout & Shared Nav Utilities */
|
||||
.logout-btn {
|
||||
margin-top: auto;
|
||||
padding: 0.75rem 1rem;
|
||||
color: #F87171;
|
||||
text-decoration: none;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
border-radius: 8px;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
.logout-btn:hover {
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
}
|
||||
|
||||
.user-actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,13 +5,14 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio | WhatsApp-First Clinic Management</title>
|
||||
<meta name="description" content="Revolutionizing Indian OPDs with WhatsApp-native queue management, AI triage, and digital patient records.">
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.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@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap" rel="stylesheet">
|
||||
<script src="tenantLoader.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<body class="landing-page">
|
||||
<nav class="glass-nav">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
|
|
|
|||
14
lab.css
14
lab.css
|
|
@ -1,19 +1,27 @@
|
|||
.ai-report-card {
|
||||
background: linear-gradient(135deg, #6366F1, #4F46E5);
|
||||
background: linear-gradient(135deg, var(--secondary), #4F46E5);
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.ai-report-card h3 {
|
||||
margin-bottom: 1rem;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.ai-report-card small {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
.btn-block {
|
||||
width: 100%;
|
||||
margin-top: 1rem;
|
||||
background: white;
|
||||
color: #4F46E5;
|
||||
color: var(--secondary);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-block:hover {
|
||||
background: #F1F5F9;
|
||||
background: var(--bg);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
|
|
|||
7
lab.html
7
lab.html
|
|
@ -4,15 +4,18 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio Lab | Diagnostics & Reports</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link rel="stylesheet" href="lab.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
71
login.css
71
login.css
|
|
@ -1,5 +1,7 @@
|
|||
.auth-body {
|
||||
background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
|
||||
background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent),
|
||||
radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent),
|
||||
var(--bg);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
|
@ -9,34 +11,43 @@
|
|||
|
||||
.auth-container {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
max-width: 480px;
|
||||
animation: fadeIn 0.6s ease-out;
|
||||
}
|
||||
|
||||
.auth-card {
|
||||
background: white;
|
||||
padding: 3rem;
|
||||
border-radius: 32px;
|
||||
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
|
||||
background: var(--surface);
|
||||
padding: 3.5rem;
|
||||
border-radius: var(--radius-xl);
|
||||
box-shadow: var(--shadow-xl);
|
||||
text-align: center;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.auth-logo {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.auth-logo h1 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
.logo-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: linear-gradient(135deg, var(--secondary), var(--accent));
|
||||
color: white;
|
||||
border-radius: var(--radius-md);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.5rem;
|
||||
color: var(--primary);
|
||||
margin-top: 0.5rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 0.75rem;
|
||||
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
|
||||
}
|
||||
|
||||
.auth-card h2 {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
font-size: 1.75rem;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
|
|
@ -55,44 +66,44 @@
|
|||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.input-group input {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid var(--border);
|
||||
background: #F8FAFC;
|
||||
transition: all 0.3s;
|
||||
background: var(--bg);
|
||||
transition: var(--transition);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.input-group input:focus {
|
||||
outline: none;
|
||||
border-color: var(--primary);
|
||||
border-color: var(--secondary);
|
||||
background: white;
|
||||
box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
|
||||
}
|
||||
|
||||
.input-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
|
||||
}
|
||||
|
||||
.auth-btn {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
font-size: 1rem;
|
||||
font-size: 1.1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.auth-footer {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.auth-footer a {
|
||||
color: var(--primary);
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
color: var(--secondary);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.auth-footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
|
|
|||
15
login.html
15
login.html
|
|
@ -4,16 +4,19 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Login | Curio HMS</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="login.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<script src="tenantLoader.js"></script>
|
||||
</head>
|
||||
<body class="auth-body">
|
||||
<div class="auth-container">
|
||||
<div class="auth-card">
|
||||
<div class="auth-logo">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<h1>Curio</h1>
|
||||
</div>
|
||||
<h2>Welcome Back</h2>
|
||||
|
|
@ -21,12 +24,12 @@
|
|||
|
||||
<form id="loginForm">
|
||||
<div class="input-group">
|
||||
<label>Clinic ID / Email</label>
|
||||
<input type="text" placeholder="e.g. SHARMA-CLINIC-01" required>
|
||||
<label for="clinicId">Clinic ID / Email</label>
|
||||
<input type="text" id="clinicId" placeholder="e.g. SHARMA-CLINIC-01" required>
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label>Password</label>
|
||||
<input type="password" placeholder="••••••••" required>
|
||||
<label for="password">Password</label>
|
||||
<input type="password" id="password" placeholder="••••••••" required>
|
||||
</div>
|
||||
<button type="submit" class="btn-primary auth-btn">Login to Dashboard</button>
|
||||
</form>
|
||||
|
|
|
|||
17
pharmacy.css
17
pharmacy.css
|
|
@ -4,32 +4,33 @@
|
|||
}
|
||||
|
||||
.inventory-item {
|
||||
margin-bottom: 1rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.inventory-item span {
|
||||
display: block;
|
||||
font-size: 0.875rem;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.inventory-item small {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.inventory-item .bar {
|
||||
height: 8px;
|
||||
background: #F1F5F9;
|
||||
background: var(--bg);
|
||||
border-radius: 99px;
|
||||
margin-top: 0.25rem;
|
||||
margin-top: 0.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.inventory-item .fill {
|
||||
height: 100%;
|
||||
background: #10B981;
|
||||
background: var(--accent);
|
||||
border-radius: 99px;
|
||||
transition: width 1s ease-in-out;
|
||||
}
|
||||
|
||||
.text-urgent {
|
||||
color: #EF4444;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,15 +4,18 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio Pharmacy | Inventory & Billing</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link rel="stylesheet" href="pharmacy.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
|
|
@ -4,15 +4,18 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clinic Registration | Curio HMS</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="login.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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="auth-body">
|
||||
<div class="auth-container">
|
||||
<div class="auth-card">
|
||||
<div class="auth-logo">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<h1>Curio</h1>
|
||||
</div>
|
||||
<h2>Register Your Clinic</h2>
|
||||
|
|
|
|||
40
settings.css
40
settings.css
|
|
@ -1,30 +1,46 @@
|
|||
.settings-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1.5rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.settings-grid .section-card h2,
|
||||
.settings-grid .section-card h3 {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.settings-grid .section-card h2 {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 1px solid var(--border);
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 2rem;
|
||||
padding-bottom: 0.75rem;
|
||||
border-bottom: 2px solid var(--bg);
|
||||
}
|
||||
|
||||
.settings-grid .input-group {
|
||||
margin-bottom: 1.25rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.settings-grid label {
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.875rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.settings-grid input, .settings-grid select {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
border-radius: 10px;
|
||||
padding: 0.875rem;
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid var(--border);
|
||||
margin-top: 0.4rem;
|
||||
background: var(--bg);
|
||||
transition: var(--transition);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.settings-grid input:focus, .settings-grid select:focus {
|
||||
outline: none;
|
||||
border-color: var(--secondary);
|
||||
background: white;
|
||||
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.05);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,15 +4,18 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio Settings | Hospital Configuration</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link rel="stylesheet" href="settings.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
25
staff.css
25
staff.css
|
|
@ -1,30 +1,43 @@
|
|||
.payroll-card {
|
||||
background: linear-gradient(135deg, #10B981, #059669);
|
||||
background: linear-gradient(135deg, var(--accent), var(--accent-hover));
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.payroll-card h3 {
|
||||
margin-bottom: 1rem;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.payroll-card p {
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.875rem;
|
||||
opacity: 0.9;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.incentive-item {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
padding: 1rem;
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
padding: 1.25rem;
|
||||
border-radius: var(--radius-md);
|
||||
backdrop-filter: blur(4px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.incentive-item span {
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.incentive-item h4 {
|
||||
font-size: 1.5rem;
|
||||
font-size: 1.75rem;
|
||||
margin: 0.25rem 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.incentive-item small {
|
||||
display: block;
|
||||
margin-top: 0.25rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,15 +4,18 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Curio Staff | Personnel & Payroll</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link rel="stylesheet" href="staff.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
|
|
@ -4,14 +4,17 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Super Admin | Curio Platform</title>
|
||||
<link rel="stylesheet" href="globals.css">
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="dashboard.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
||||
<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">
|
||||
<span class="logo-icon" style="background: var(--secondary)">C</span>
|
||||
<div class="logo-icon">C</div>
|
||||
<span class="logo-text">Curio Central</span>
|
||||
</div>
|
||||
<nav class="side-nav">
|
||||
|
|
|
|||
Loading…
Reference in New Issue