1000 lines
20 KiB
CSS
1000 lines
20 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
|
|
|
|
:root {
|
|
--bg-primary: #0a0a0f;
|
|
--bg-secondary: #12121a;
|
|
--bg-card: #1a1a2e;
|
|
--bg-card-hover: #22223a;
|
|
--bg-elevated: #252540;
|
|
--border-color: rgba(255,255,255,0.06);
|
|
--border-active: rgba(108,99,255,0.5);
|
|
--text-primary: #f0f0f5;
|
|
--text-secondary: #8888a0;
|
|
--text-muted: #55556a;
|
|
--accent: #6C63FF;
|
|
--accent-hover: #5a52e0;
|
|
--accent-glow: rgba(108,99,255,0.25);
|
|
--success: #22c55e;
|
|
--success-bg: rgba(34,197,94,0.1);
|
|
--warning: #f59e0b;
|
|
--warning-bg: rgba(245,158,11,0.1);
|
|
--danger: #ef4444;
|
|
--danger-bg: rgba(239,68,68,0.1);
|
|
--info: #3b82f6;
|
|
--info-bg: rgba(59,130,246,0.1);
|
|
--gradient-primary: linear-gradient(135deg, #6C63FF 0%, #a855f7 100%);
|
|
--gradient-card: linear-gradient(145deg, rgba(26,26,46,0.8), rgba(18,18,26,0.9));
|
|
--shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
|
|
--shadow-md: 0 4px 20px rgba(0,0,0,0.4);
|
|
--shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
|
|
--shadow-glow: 0 0 30px rgba(108,99,255,0.15);
|
|
--radius-sm: 8px;
|
|
--radius-md: 12px;
|
|
--radius-lg: 16px;
|
|
--radius-xl: 24px;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html, body { height: 100%; }
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, sans-serif;
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* === SCROLLBAR === */
|
|
::-webkit-scrollbar { width: 6px; }
|
|
::-webkit-scrollbar-track { background: transparent; }
|
|
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
|
|
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
|
|
|
|
/* === LAYOUT === */
|
|
.app-layout {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 260px;
|
|
background: var(--bg-secondary);
|
|
border-right: 1px solid var(--border-color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.sidebar-header {
|
|
padding: 24px 20px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.sidebar-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--gradient-primary);
|
|
border-radius: var(--radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
color: white;
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
background: var(--gradient-primary);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.sidebar-nav {
|
|
flex: 1;
|
|
padding: 16px 12px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.nav-section-title {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.2px;
|
|
padding: 16px 12px 8px;
|
|
}
|
|
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
border: none;
|
|
background: none;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.nav-item:hover {
|
|
background: var(--bg-card);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.nav-item.active {
|
|
background: var(--accent-glow);
|
|
color: var(--accent);
|
|
box-shadow: inset 3px 0 0 var(--accent);
|
|
}
|
|
|
|
.nav-item svg { width: 20px; height: 20px; flex-shrink: 0; }
|
|
|
|
.sidebar-footer {
|
|
padding: 16px;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.plan-badge {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 14px;
|
|
background: var(--accent-glow);
|
|
border-radius: var(--radius-sm);
|
|
font-size: 12px;
|
|
color: var(--accent);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* === MAIN CONTENT === */
|
|
.main-content {
|
|
flex: 1;
|
|
margin-left: 260px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 32px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
background: rgba(10,10,15,0.8);
|
|
backdrop-filter: blur(20px);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 50;
|
|
}
|
|
|
|
.topbar-left h1 {
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.topbar-left p {
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.topbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.page-content {
|
|
padding: 32px;
|
|
}
|
|
|
|
/* === CARDS === */
|
|
.card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-lg);
|
|
padding: 24px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: var(--border-active);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* === STATS === */
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 20px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-lg);
|
|
padding: 24px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.stat-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-glow);
|
|
border-color: var(--border-active);
|
|
}
|
|
|
|
.stat-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: var(--radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.stat-icon.purple { background: var(--accent-glow); color: var(--accent); }
|
|
.stat-icon.green { background: var(--success-bg); color: var(--success); }
|
|
.stat-icon.orange { background: var(--warning-bg); color: var(--warning); }
|
|
.stat-icon.blue { background: var(--info-bg); color: var(--info); }
|
|
|
|
.stat-value {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.stat-change {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.stat-change.up { color: var(--success); }
|
|
.stat-change.down { color: var(--danger); }
|
|
|
|
.btn, button:not(.tab):not(.toggle) {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
padding: 8px 16px;
|
|
border-radius: 6px;
|
|
font-size: 13.5px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
box-shadow: none !important;
|
|
outline: none;
|
|
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.08s ease;
|
|
text-decoration: none;
|
|
font-family: inherit;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Efeito básico de apertar quando clicar */
|
|
.btn:active, button:not(.tab):not(.toggle):active {
|
|
transform: scale(0.95) !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent);
|
|
color: white;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--accent-hover);
|
|
color: white;
|
|
filter: brightness(1.15);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
color: white;
|
|
}
|
|
|
|
.btn-danger {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
color: #ef4444;
|
|
border: 1px solid rgba(239, 68, 68, 0.25);
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background: rgba(239, 68, 68, 0.25);
|
|
border-color: rgba(239, 68, 68, 0.5);
|
|
color: #f87171;
|
|
}
|
|
|
|
.btn-ghost {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
color: var(--text-secondary);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.btn-ghost:hover {
|
|
color: var(--text-primary);
|
|
background: rgba(255, 255, 255, 0.12);
|
|
border-color: rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
/* Ícone de excluir no modo ghost (vermelho plano que acende no hover) */
|
|
.btn-ghost[style*="danger"], .btn-ghost[style*="239, 68, 68"], .btn-ghost.danger {
|
|
background: rgba(239, 68, 68, 0.1) !important;
|
|
border: 1px solid rgba(239, 68, 68, 0.2) !important;
|
|
color: #ef4444 !important;
|
|
}
|
|
|
|
.btn-ghost[style*="danger"]:hover, .btn-ghost[style*="239, 68, 68"]:hover, .btn-ghost.danger:hover {
|
|
background: rgba(239, 68, 68, 0.25) !important;
|
|
border-color: rgba(239, 68, 68, 0.5) !important;
|
|
color: #f87171 !important;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 5px 12px;
|
|
font-size: 12.5px;
|
|
}
|
|
|
|
.btn-icon {
|
|
padding: 6px;
|
|
border-radius: 6px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* === FORMS === */
|
|
.form-group { margin-bottom: 20px; }
|
|
|
|
.form-label {
|
|
display: block;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.form-input, .form-select, .form-textarea {
|
|
width: 100%;
|
|
padding: 10px 14px;
|
|
background: var(--bg-primary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-primary);
|
|
font-size: 14px;
|
|
font-family: inherit;
|
|
transition: all 0.2s;
|
|
outline: none;
|
|
}
|
|
|
|
.form-input:focus, .form-select:focus, .form-textarea:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px var(--accent-glow);
|
|
}
|
|
|
|
.form-textarea { resize: vertical; min-height: 80px; }
|
|
.form-select { cursor: pointer; }
|
|
|
|
/* === TABLE === */
|
|
.table-container {
|
|
overflow-x: auto;
|
|
border-radius: var(--radius-lg);
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
padding: 12px 16px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
background: var(--bg-secondary);
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
td {
|
|
padding: 14px 16px;
|
|
font-size: 14px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
vertical-align: middle;
|
|
}
|
|
|
|
tr:last-child td { border-bottom: none; }
|
|
|
|
tr:hover td { background: var(--bg-card-hover); }
|
|
|
|
/* === BADGES === */
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 4px 10px;
|
|
border-radius: 20px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.badge-success { background: var(--success-bg); color: var(--success); }
|
|
.badge-warning { background: var(--warning-bg); color: var(--warning); }
|
|
.badge-danger { background: var(--danger-bg); color: var(--danger); }
|
|
.badge-info { background: var(--info-bg); color: var(--info); }
|
|
.badge-purple { background: var(--accent-glow); color: var(--accent); }
|
|
|
|
/* === MODAL === */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0,0,0,0.7);
|
|
backdrop-filter: blur(4px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
animation: fadeIn 0.2s ease;
|
|
}
|
|
|
|
.modal {
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-xl);
|
|
width: 90%;
|
|
max-width: 560px;
|
|
max-height: 85vh;
|
|
overflow-y: auto;
|
|
box-shadow: var(--shadow-lg);
|
|
animation: slideUp 0.3s ease;
|
|
}
|
|
|
|
.modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 24px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.modal-title { font-size: 18px; font-weight: 700; }
|
|
|
|
.modal-body { padding: 24px; }
|
|
|
|
.modal-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 12px;
|
|
padding: 16px 24px;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
/* === CALENDAR === */
|
|
.calendar-grid {
|
|
display: grid;
|
|
grid-template-columns: 80px repeat(auto-fill, minmax(150px, 1fr));
|
|
gap: 0;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.time-slot {
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
border-bottom: 1px solid var(--border-color);
|
|
text-align: right;
|
|
}
|
|
|
|
.appointment-block {
|
|
padding: 8px 12px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
margin: 2px 4px;
|
|
}
|
|
|
|
.appointment-block:hover { transform: scale(1.02); }
|
|
|
|
.appointment-block.confirmed {
|
|
background: var(--accent-glow);
|
|
border-left: 3px solid var(--accent);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.appointment-block.pending {
|
|
background: var(--warning-bg);
|
|
border-left: 3px solid var(--warning);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.appointment-block.completed {
|
|
background: var(--success-bg);
|
|
border-left: 3px solid var(--success);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* === TABS === */
|
|
.tabs {
|
|
display: flex;
|
|
gap: 4px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 20px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
border: none;
|
|
background: none;
|
|
position: relative;
|
|
transition: all 0.2s;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.tab:hover { color: var(--text-primary); }
|
|
|
|
.tab.active {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.tab.active::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -1px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
border-radius: 2px 2px 0 0;
|
|
}
|
|
|
|
/* === AVATAR === */
|
|
.avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background: var(--gradient-primary);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
color: white;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.avatar-lg { width: 48px; height: 48px; font-size: 18px; }
|
|
|
|
/* === SEARCH === */
|
|
.search-box {
|
|
position: relative;
|
|
}
|
|
|
|
.search-box svg {
|
|
position: absolute;
|
|
left: 14px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
color: var(--text-muted);
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.search-box input {
|
|
padding-left: 42px;
|
|
}
|
|
|
|
/* === ANIMATIONS === */
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from { opacity: 0; transform: translateY(20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from { opacity: 0; transform: translateX(-10px); }
|
|
to { opacity: 1; transform: translateX(0); }
|
|
}
|
|
|
|
.fade-in { animation: fadeIn 0.3s ease; }
|
|
.slide-up { animation: slideUp 0.4s ease; }
|
|
|
|
/* === GRID UTILS === */
|
|
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
|
|
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
|
|
.flex-between { display: flex; align-items: center; justify-content: space-between; }
|
|
.flex-center { display: flex; align-items: center; justify-content: center; }
|
|
.flex-gap { display: flex; align-items: center; gap: 12px; }
|
|
.gap-sm { gap: 8px; }
|
|
.mt-4 { margin-top: 16px; }
|
|
.mt-6 { margin-top: 24px; }
|
|
.mb-4 { margin-bottom: 16px; }
|
|
.mb-6 { margin-bottom: 24px; }
|
|
|
|
/* === TOGGLE === */
|
|
.toggle {
|
|
width: 44px;
|
|
height: 24px;
|
|
border-radius: 12px;
|
|
background: var(--bg-elevated);
|
|
border: 1px solid var(--border-color);
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.toggle.active {
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.toggle::after {
|
|
content: '';
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
background: white;
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 2px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.toggle.active::after { transform: translateX(20px); }
|
|
|
|
/* === SCHEDULE VIEW === */
|
|
.schedule-container {
|
|
display: grid;
|
|
grid-template-columns: 70px 1fr;
|
|
gap: 0;
|
|
}
|
|
|
|
.schedule-times {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.schedule-time-label {
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-end;
|
|
padding-right: 12px;
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.schedule-columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--cols, 2), 1fr);
|
|
gap: 8px;
|
|
}
|
|
|
|
.schedule-column {
|
|
position: relative;
|
|
min-height: 600px;
|
|
border-left: 1px solid var(--border-color);
|
|
}
|
|
|
|
.schedule-column-header {
|
|
text-align: center;
|
|
padding: 12px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
position: sticky;
|
|
top: 0;
|
|
background: var(--bg-secondary);
|
|
z-index: 5;
|
|
}
|
|
|
|
.schedule-event {
|
|
position: absolute;
|
|
left: 4px;
|
|
right: 4px;
|
|
border-radius: var(--radius-sm);
|
|
padding: 6px 10px;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
transition: all 0.2s;
|
|
z-index: 2;
|
|
}
|
|
|
|
.schedule-event:hover {
|
|
z-index: 10;
|
|
box-shadow: var(--shadow-md);
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
.schedule-event-title {
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.schedule-event-time {
|
|
font-size: 11px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.hour-line {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
height: 1px;
|
|
background: var(--border-color);
|
|
}
|
|
|
|
/* === PRICING CARDS === */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-xl);
|
|
padding: 32px 24px;
|
|
text-align: center;
|
|
transition: all 0.3s;
|
|
position: relative;
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
border-color: var(--accent);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.pricing-card.featured::before {
|
|
content: 'Popular';
|
|
position: absolute;
|
|
top: -12px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
padding: 4px 16px;
|
|
border-radius: 20px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
|
|
.pricing-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
|
|
|
|
.pricing-price {
|
|
font-size: 40px;
|
|
font-weight: 900;
|
|
margin: 16px 0;
|
|
letter-spacing: -2px;
|
|
}
|
|
|
|
.pricing-price span {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.pricing-features {
|
|
list-style: none;
|
|
text-align: left;
|
|
margin: 24px 0;
|
|
}
|
|
|
|
.pricing-features li {
|
|
padding: 8px 0;
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.pricing-features li svg { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }
|
|
|
|
/* === EMPTY STATE === */
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 60px 20px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.empty-state svg {
|
|
width: 64px;
|
|
height: 64px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.empty-state h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }
|
|
.empty-state p { max-width: 400px; margin: 0 auto 20px; font-size: 14px; }
|
|
|
|
/* === RESPONSIVE === */
|
|
@media (max-width: 768px) {
|
|
.sidebar { transform: translateX(-100%); }
|
|
.sidebar.open { transform: translateX(0); }
|
|
.main-content { margin-left: 0; }
|
|
.stats-grid { grid-template-columns: 1fr 1fr; }
|
|
.grid-2, .grid-3 { grid-template-columns: 1fr; }
|
|
.topbar { padding: 16px; }
|
|
.page-content { padding: 16px; }
|
|
.pricing-grid { grid-template-columns: 1fr; }
|
|
}
|
|
|
|
/* === TOAST NOTIFICATIONS === */
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 24px;
|
|
right: 24px;
|
|
z-index: 9999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
max-width: 420px;
|
|
width: calc(100% - 48px);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.toast-item {
|
|
pointer-events: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 14px 18px;
|
|
background: var(--bg-card, #12121c);
|
|
border: 1px solid var(--border-color, rgba(255,255,255,0.12));
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
|
|
.toast-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex: 1;
|
|
}
|
|
|
|
.toast-icon { flex-shrink: 0; }
|
|
.toast-icon.success { color: #10b981; }
|
|
.toast-icon.error { color: #ef4444; }
|
|
.toast-icon.warning { color: #f59e0b; }
|
|
.toast-icon.info { color: #6366f1; }
|
|
|
|
.toast-error {
|
|
border-left: 4px solid #ef4444;
|
|
background: linear-gradient(90deg, rgba(239,68,68,0.15) 0%, rgba(18,18,28,0.95) 100%);
|
|
}
|
|
|
|
.toast-warning {
|
|
border-left: 4px solid #f59e0b;
|
|
background: linear-gradient(90deg, rgba(245,158,11,0.15) 0%, rgba(18,18,28,0.95) 100%);
|
|
}
|
|
|
|
.toast-success {
|
|
border-left: 4px solid #10b981;
|
|
background: linear-gradient(90deg, rgba(16,185,129,0.15) 0%, rgba(18,18,28,0.95) 100%);
|
|
}
|
|
|
|
.toast-info {
|
|
border-left: 4px solid #6366f1;
|
|
background: linear-gradient(90deg, rgba(99,102,241,0.15) 0%, rgba(18,18,28,0.95) 100%);
|
|
}
|
|
|
|
.toast-message {
|
|
line-height: 1.4;
|
|
color: var(--text-primary, #f3f4f6);
|
|
}
|
|
|
|
.toast-close {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--text-secondary, #9ca3af);
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.toast-close:hover {
|
|
color: #fff;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
@keyframes toastSlideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px) scale(0.95);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|