- Add batch_eligibility, batch_claim, and batch_check_and_claim intents to AI classifier so multiple patients can be processed one by one - Add queue processing on insurance-status and claims pages to auto-start the next patient after each check/claim completes - Make patient schema firstName, lastName, phone optional so patients can be created with just member ID + DOB from eligibility checks - Cancel buttons now preserve chat history instead of clearing it - Patient-found card shows Check Eligibility, Eligibility & Appointment Today, and Cancel buttons - Claim service date asks user to pick between latest appointment and today when they differ - Login page subtitle styled with animated gradient Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
123 lines
3.0 KiB
CSS
Executable File
123 lines
3.0 KiB
CSS
Executable File
|
|
.form-container {
|
|
max-height: 80vh; /* Set a max height (80% of the viewport height or adjust as needed) */
|
|
overflow-y: auto; /* Enable vertical scrolling when the content overflows */
|
|
padding: 20px; /* Optional, for some spacing */
|
|
}
|
|
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 222.2 47.4% 11.2%;
|
|
|
|
--card: 0 0% 100%;
|
|
--card-foreground: 222.2 47.4% 11.2%;
|
|
|
|
--popover: 0 0% 100%;
|
|
--popover-foreground: 222.2 47.4% 11.2%;
|
|
|
|
--primary: 174 72% 35%;
|
|
--primary-foreground: 0 0% 100%;
|
|
|
|
--secondary: 210 40% 96.1%;
|
|
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
|
|
--muted: 210 40% 96.1%;
|
|
--muted-foreground: 215.4 16.3% 46.9%;
|
|
|
|
--accent: 210 40% 96.1%;
|
|
--accent-foreground: 222.2 47.4% 11.2%;
|
|
|
|
--destructive: 0 100% 50%;
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
--border: 240 5.9% 90%;
|
|
--input: 240 5.9% 90%;
|
|
--ring: 240 4.9% 83.9%;
|
|
|
|
--radius: 0.5rem;
|
|
|
|
--chart-1: 217 91% 60%;
|
|
--chart-2: 267 91% 70%;
|
|
--chart-3: 177 91% 40%;
|
|
--chart-4: 37 91% 55%;
|
|
--chart-5: 357 91% 60%;
|
|
|
|
--sidebar-background: 222.2 47.4% 11.2%;
|
|
--sidebar-foreground: 0 0% 100%;
|
|
--sidebar-primary: 174 72% 35%;
|
|
--sidebar-primary-foreground: 0 0% 100%;
|
|
--sidebar-accent: 210 40% 96.1%;
|
|
--sidebar-accent-foreground: 222.2 47.4% 11.2%;
|
|
--sidebar-border: 240 5.9% 90%;
|
|
--sidebar-ring: 240 4.9% 83.9%;
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
|
|
body {
|
|
@apply font-sans antialiased bg-background text-foreground;
|
|
}
|
|
}
|
|
@keyframes blob-float {
|
|
0%, 100% {
|
|
transform: translate(0, 0) scale(1);
|
|
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
|
|
}
|
|
25% {
|
|
transform: translate(80px, -60px) scale(1.25);
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
}
|
|
50% {
|
|
transform: translate(-50px, 50px) scale(0.85);
|
|
border-radius: 30% 60% 40% 70% / 50% 60% 30% 60%;
|
|
}
|
|
75% {
|
|
transform: translate(40px, 30px) scale(1.1);
|
|
border-radius: 50% 40% 60% 30% / 40% 70% 50% 60%;
|
|
}
|
|
}
|
|
|
|
@keyframes blob-rotate {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.login-blob {
|
|
animation: blob-float 25s ease-in-out infinite;
|
|
}
|
|
.login-blob-container {
|
|
animation: blob-rotate 50s linear infinite;
|
|
}
|
|
.animation-delay-2000 {
|
|
animation-delay: 5s;
|
|
}
|
|
.animation-delay-4000 {
|
|
animation-delay: 10s;
|
|
}
|
|
|
|
.day-picker-small-scale select {
|
|
@apply text-sm text-gray-900 bg-white border border-gray-300 rounded-md focus:outline-none focus:border-blue-600 focus:ring-1 focus:ring-blue-600;
|
|
height: 32px; /* Fixed height: ~h-8 */
|
|
line-height: 1.25rem; /* To align text nicely */
|
|
padding: 0 0.5rem; /* Override padding */
|
|
min-width: 6rem; /* Prevent shrinking */
|
|
appearance: none; /* Removes native styling */
|
|
}
|
|
|
|
@keyframes gradient-flash {
|
|
0% { background-position: 100% 50%; }
|
|
50% { background-position: 0% 50%; }
|
|
100% { background-position: 100% 50%; }
|
|
}
|
|
|
|
.animate-gradient-flash {
|
|
animation: gradient-flash 6s ease-in-out infinite;
|
|
}
|