curaflow/globals.css

299 lines
6.3 KiB
CSS

: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;
--success-color: #059669;
--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);
}
.btn-danger {
background: var(--urgent);
color: white;
}
.btn-danger:hover {
background: #DC2626; /* Darker red */
}
.btn-sm {
padding: 0.4rem 0.8rem;
font-size: 0.85rem;
}
.btn-block {
display: flex;
width: 100%;
}
.btn-icon {
padding: 0.5rem;
border-radius: 50%;
}
.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);
}
/* Visibility Utilities */
.hidden {
display: none !important;
}
/* Toast Notifications */
.toast-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 10px;
}
.toast {
background: var(--surface);
color: var(--text-main);
padding: 1rem 1.5rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
border-left: 4px solid var(--secondary);
display: flex;
align-items: center;
gap: 0.75rem;
transform: translateX(120%);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 500;
}
.toast.toast-show {
transform: translateX(0);
}
.toast.toast-success { border-left-color: var(--accent); }
.toast.toast-error { border-left-color: var(--urgent); }
.toast.toast-warning { border-left-color: var(--warning); }
.toast.toast-info { border-left-color: var(--secondary); }
/* Form Elements */
.input-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-bottom: 1rem;
}
.form-control {
padding: 0.75rem 1rem;
border: 1px solid var(--border);
border-radius: var(--radius-md);
font-family: inherit;
font-size: 0.95rem;
transition: var(--transition);
}
.form-control:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-label {
font-weight: 600;
font-size: 0.9rem;
color: var(--text-muted);
}