1157 lines
22 KiB
CSS
1157 lines
22 KiB
CSS
/* ==========================================
|
|
DASHBOARD STYLES
|
|
========================================== */
|
|
|
|
/* ==========================================
|
|
FONT FACE (Poppins)
|
|
========================================== */
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../fonts/Poppins-Regular.woff') format('woff');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../fonts/Poppins-Medium.woff') format('woff');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../fonts/Poppins-SemiBold.woff') format('woff');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../fonts/Poppins-Bold.woff') format('woff');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* ==========================================
|
|
CSS VARIABLES
|
|
========================================== */
|
|
:root {
|
|
--color-surface: #fff;
|
|
--color-background: #f5f5f5;
|
|
--color-background-hover: #f0f0f0;
|
|
--color-background-alt: #fafafa;
|
|
--color-border: #e0e0e0;
|
|
--color-text: #333;
|
|
--color-text-secondary: #666;
|
|
--color-teal: #00897b;
|
|
--color-blue: #1976d2;
|
|
--color-red: #e53935;
|
|
--color-amber: #f59e0b;
|
|
--color-purple: #8b5cf6;
|
|
--color-green: #43a047;
|
|
--font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
--font-mono: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
/* Dark mode */
|
|
@media (prefers-color-scheme: dark) {
|
|
:root:not(.light-mode) {
|
|
--color-surface: #1e1e1e;
|
|
--color-background: #121212;
|
|
--color-background-hover: #2a2a2a;
|
|
--color-background-alt: #1a1a1a;
|
|
--color-border: #333;
|
|
--color-text: #e0e0e0;
|
|
--color-text-secondary: #999;
|
|
--color-teal: #26a69a;
|
|
--color-blue: #42a5f5;
|
|
--color-red: #ef5350;
|
|
--color-amber: #ffb74d;
|
|
--color-purple: #a78bfa;
|
|
--color-green: #66bb6a;
|
|
}
|
|
}
|
|
|
|
:root.dark-mode {
|
|
--color-surface: #1e1e1e;
|
|
--color-background: #121212;
|
|
--color-background-hover: #2a2a2a;
|
|
--color-background-alt: #1a1a1a;
|
|
--color-border: #333;
|
|
--color-text: #e0e0e0;
|
|
--color-text-secondary: #999;
|
|
--color-teal: #26a69a;
|
|
--color-blue: #42a5f5;
|
|
--color-red: #ef5350;
|
|
--color-amber: #ffb74d;
|
|
--color-purple: #a78bfa;
|
|
--color-green: #66bb6a;
|
|
}
|
|
|
|
/* ==========================================
|
|
RESET & BASE
|
|
========================================== */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-family);
|
|
font-size: 14px;
|
|
color: var(--color-text);
|
|
background: var(--color-background);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* ==========================================
|
|
LAYOUT
|
|
========================================== */
|
|
swp-page-container {
|
|
display: block;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
swp-dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 380px;
|
|
gap: 24px;
|
|
}
|
|
|
|
swp-main-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
swp-side-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* ==========================================
|
|
BUTTONS
|
|
========================================== */
|
|
swp-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 18px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
font-family: var(--font-family);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 150ms ease;
|
|
border: none;
|
|
}
|
|
|
|
swp-btn i {
|
|
font-size: 18px;
|
|
}
|
|
|
|
swp-btn.primary {
|
|
background: var(--color-teal);
|
|
color: white;
|
|
}
|
|
|
|
swp-btn.primary:hover {
|
|
background: #00796b;
|
|
}
|
|
|
|
swp-btn.secondary {
|
|
background: var(--color-surface);
|
|
border: 1px solid var(--color-border);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-btn.secondary:hover {
|
|
background: var(--color-background-hover);
|
|
}
|
|
|
|
/* ==========================================
|
|
CARDS
|
|
========================================== */
|
|
swp-card {
|
|
display: block;
|
|
background: var(--color-surface);
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
padding: 20px;
|
|
}
|
|
|
|
swp-card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
swp-card-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-card-title i {
|
|
font-size: 20px;
|
|
color: var(--color-teal);
|
|
}
|
|
|
|
swp-card-action {
|
|
font-size: 12px;
|
|
color: var(--color-teal);
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
|
|
swp-card-action:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
swp-section-label {
|
|
display: block;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--color-text-secondary);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
/* ==========================================
|
|
STATS BAR
|
|
========================================== */
|
|
swp-stats-bar {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
swp-stat-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 16px 20px;
|
|
background: var(--color-surface);
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
swp-stat-card swp-stat-value {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
font-family: var(--font-mono);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-stat-card swp-stat-label {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-stat-card swp-stat-trend {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 11px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
swp-stat-card swp-stat-trend.up {
|
|
color: var(--color-green);
|
|
}
|
|
|
|
swp-stat-card swp-stat-trend.down {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
swp-stat-card.highlight swp-stat-value {
|
|
color: var(--color-teal);
|
|
}
|
|
|
|
swp-stat-card.success swp-stat-value {
|
|
color: var(--color-green);
|
|
}
|
|
|
|
swp-stat-card.warning swp-stat-value {
|
|
color: var(--color-amber);
|
|
}
|
|
|
|
/* ==========================================
|
|
AI INSIGHT
|
|
========================================== */
|
|
swp-ai-insight {
|
|
display: block;
|
|
padding: 16px;
|
|
background: linear-gradient(135deg, color-mix(in srgb, var(--color-purple) 8%, transparent), color-mix(in srgb, var(--color-teal) 8%, transparent));
|
|
border: 1px solid color-mix(in srgb, var(--color-purple) 20%, transparent);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
swp-ai-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
swp-ai-header i {
|
|
font-size: 20px;
|
|
color: var(--color-purple);
|
|
}
|
|
|
|
swp-ai-header span {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--color-purple);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
swp-ai-text {
|
|
display: block;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-ai-text strong {
|
|
color: var(--color-purple);
|
|
}
|
|
|
|
/* ==========================================
|
|
OCCUPANCY BAR
|
|
========================================== */
|
|
swp-occupancy-bar {
|
|
display: block;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
swp-occupancy-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
swp-occupancy-label {
|
|
font-size: 13px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-occupancy-value {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
font-family: var(--font-mono);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-occupancy-track {
|
|
height: 8px;
|
|
background: var(--color-border);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
swp-occupancy-fill {
|
|
display: block;
|
|
height: 100%;
|
|
background: var(--color-teal);
|
|
border-radius: 4px;
|
|
transition: width 500ms ease;
|
|
}
|
|
|
|
swp-occupancy-fill.high {
|
|
background: var(--color-green);
|
|
}
|
|
|
|
swp-occupancy-fill.medium {
|
|
background: var(--color-amber);
|
|
}
|
|
|
|
swp-occupancy-fill.low {
|
|
background: var(--color-red);
|
|
}
|
|
|
|
/* ==========================================
|
|
TIMELINE / BOOKINGS
|
|
========================================== */
|
|
swp-booking-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
swp-booking-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: background 150ms ease;
|
|
}
|
|
|
|
swp-booking-item:hover {
|
|
background: var(--color-background-hover);
|
|
}
|
|
|
|
swp-booking-time {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-width: 50px;
|
|
}
|
|
|
|
swp-booking-time swp-time-start {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
font-family: var(--font-mono);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-booking-time swp-time-end {
|
|
font-size: 11px;
|
|
color: var(--color-text-secondary);
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
swp-booking-indicator {
|
|
width: 4px;
|
|
height: 40px;
|
|
border-radius: 2px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
swp-booking-indicator.teal { background: var(--color-teal); }
|
|
swp-booking-indicator.blue { background: var(--color-blue); }
|
|
swp-booking-indicator.purple { background: var(--color-purple); }
|
|
swp-booking-indicator.amber { background: var(--color-amber); }
|
|
swp-booking-indicator.green { background: var(--color-green); }
|
|
|
|
swp-booking-details {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
swp-booking-service {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
swp-booking-customer {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-booking-employee {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
swp-booking-employee swp-avatar-small {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background: var(--color-teal);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
swp-booking-employee span {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-booking-status {
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
swp-booking-status.confirmed {
|
|
background: color-mix(in srgb, var(--color-green) 15%, transparent);
|
|
color: var(--color-green);
|
|
}
|
|
|
|
swp-booking-status.pending {
|
|
background: color-mix(in srgb, var(--color-amber) 15%, transparent);
|
|
color: var(--color-amber);
|
|
}
|
|
|
|
swp-booking-status.inprogress {
|
|
background: color-mix(in srgb, var(--color-blue) 15%, transparent);
|
|
color: var(--color-blue);
|
|
}
|
|
|
|
swp-booking-status.completed {
|
|
background: var(--color-background-hover);
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-booking-item.completed {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
swp-booking-item.completed swp-booking-indicator {
|
|
background: var(--color-border);
|
|
}
|
|
|
|
/* ==========================================
|
|
ATTENTION LIST
|
|
========================================== */
|
|
swp-attention-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
swp-attention-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 6px;
|
|
border-left: 3px solid var(--color-border);
|
|
}
|
|
|
|
swp-attention-item.urgent {
|
|
border-left-color: var(--color-red);
|
|
background: color-mix(in srgb, var(--color-red) 5%, var(--color-background-alt));
|
|
}
|
|
|
|
swp-attention-item.warning {
|
|
border-left-color: var(--color-amber);
|
|
background: color-mix(in srgb, var(--color-amber) 5%, var(--color-background-alt));
|
|
}
|
|
|
|
swp-attention-item.info {
|
|
border-left-color: var(--color-blue);
|
|
}
|
|
|
|
swp-attention-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
swp-attention-item.urgent swp-attention-icon {
|
|
background: color-mix(in srgb, var(--color-red) 15%, transparent);
|
|
color: var(--color-red);
|
|
}
|
|
|
|
swp-attention-item.warning swp-attention-icon {
|
|
background: color-mix(in srgb, var(--color-amber) 15%, transparent);
|
|
color: var(--color-amber);
|
|
}
|
|
|
|
swp-attention-item.info swp-attention-icon {
|
|
background: color-mix(in srgb, var(--color-blue) 15%, transparent);
|
|
color: var(--color-blue);
|
|
}
|
|
|
|
swp-attention-icon i {
|
|
font-size: 16px;
|
|
}
|
|
|
|
swp-attention-content {
|
|
flex: 1;
|
|
}
|
|
|
|
swp-attention-title {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
swp-attention-desc {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-attention-action {
|
|
font-size: 12px;
|
|
color: var(--color-teal);
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
swp-attention-action:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ==========================================
|
|
EMPLOYEE STATUS
|
|
========================================== */
|
|
swp-employee-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
swp-employee-status-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
swp-employee-avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background: var(--color-teal);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
swp-employee-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
swp-employee-name {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-employee-current {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
swp-employee-status-badge {
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
swp-employee-status-badge.busy {
|
|
background: color-mix(in srgb, var(--color-teal) 15%, transparent);
|
|
color: var(--color-teal);
|
|
}
|
|
|
|
swp-employee-status-badge.available {
|
|
background: color-mix(in srgb, var(--color-green) 15%, transparent);
|
|
color: var(--color-green);
|
|
}
|
|
|
|
swp-employee-status-badge.away {
|
|
background: color-mix(in srgb, var(--color-amber) 15%, transparent);
|
|
color: var(--color-amber);
|
|
}
|
|
|
|
swp-employee-status-badge.off {
|
|
background: var(--color-background-hover);
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
/* ==========================================
|
|
QUICK STATS MINI
|
|
========================================== */
|
|
swp-quick-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 12px;
|
|
}
|
|
|
|
swp-quick-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
padding: 12px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
swp-quick-stat swp-stat-value {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
font-family: var(--font-mono);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-quick-stat swp-stat-label {
|
|
font-size: 11px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
/* ==========================================
|
|
NOTIFICATIONS
|
|
========================================== */
|
|
swp-notification-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
swp-notification-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
padding: 10px 12px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: background 150ms ease;
|
|
}
|
|
|
|
swp-notification-item:hover {
|
|
background: var(--color-background-hover);
|
|
}
|
|
|
|
swp-notification-item.unread {
|
|
background: color-mix(in srgb, var(--color-teal) 5%, var(--color-background-alt));
|
|
}
|
|
|
|
swp-notification-icon {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
background: var(--color-background-hover);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-notification-icon i {
|
|
font-size: 14px;
|
|
}
|
|
|
|
swp-notification-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
swp-notification-text {
|
|
font-size: 13px;
|
|
color: var(--color-text);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
swp-notification-text strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
swp-notification-time {
|
|
font-size: 11px;
|
|
color: var(--color-text-secondary);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
swp-notification-item.unread swp-notification-icon {
|
|
background: color-mix(in srgb, var(--color-teal) 15%, transparent);
|
|
color: var(--color-teal);
|
|
}
|
|
|
|
/* ==========================================
|
|
TIME INDICATOR
|
|
========================================== */
|
|
swp-current-time {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
background: color-mix(in srgb, var(--color-teal) 10%, transparent);
|
|
border-radius: 6px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
swp-current-time i {
|
|
font-size: 16px;
|
|
color: var(--color-teal);
|
|
}
|
|
|
|
swp-current-time span {
|
|
font-size: 13px;
|
|
color: var(--color-teal);
|
|
font-weight: 500;
|
|
}
|
|
|
|
swp-current-time swp-time {
|
|
font-family: var(--font-mono);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* ==========================================
|
|
PAGE HEADER (for content modules)
|
|
========================================== */
|
|
swp-page-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
swp-page-header swp-page-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-page-header swp-page-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
swp-date-display {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-date-display i {
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* ==========================================
|
|
RESPONSIVE
|
|
========================================== */
|
|
@media (max-width: 1100px) {
|
|
swp-dashboard-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
swp-stats-bar {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
swp-stats-bar {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* ==========================================
|
|
WAITLIST MINI CARD
|
|
========================================== */
|
|
swp-waitlist-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
background: var(--color-surface);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
swp-waitlist-card:hover {
|
|
border-color: var(--color-teal);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
swp-waitlist-icon {
|
|
position: relative;
|
|
font-size: 24px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-waitlist-badge {
|
|
position: absolute;
|
|
top: -8px;
|
|
right: -8px;
|
|
min-width: 20px;
|
|
height: 20px;
|
|
padding: 0 6px;
|
|
background: var(--color-teal);
|
|
color: white;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
swp-waitlist-label {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
/* ==========================================
|
|
WAITLIST DRAWER
|
|
========================================== */
|
|
swp-drawer-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 0.3s ease;
|
|
z-index: 999;
|
|
}
|
|
|
|
swp-drawer-overlay.visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
swp-waitlist-drawer {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 420px;
|
|
height: 100vh;
|
|
background: var(--color-surface);
|
|
border-left: 1px solid var(--color-border);
|
|
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease;
|
|
z-index: 1000;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
swp-waitlist-drawer.open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
swp-drawer-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 24px;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
swp-drawer-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
swp-drawer-title swp-count {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-drawer-close {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 6px;
|
|
background: var(--color-background-alt);
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--color-text-secondary);
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
swp-drawer-close:hover {
|
|
background: var(--color-background-hover);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-drawer-close i {
|
|
font-size: 18px;
|
|
}
|
|
|
|
swp-drawer-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 16px;
|
|
}
|
|
|
|
swp-waitlist-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
swp-waitlist-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
background: var(--color-background-alt);
|
|
border-radius: 8px;
|
|
border: 1px solid var(--color-border);
|
|
}
|
|
|
|
swp-waitlist-customer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
swp-waitlist-customer swp-avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
background: var(--color-teal);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
swp-waitlist-customer-info {
|
|
flex: 1;
|
|
}
|
|
|
|
swp-waitlist-name {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-waitlist-phone {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-waitlist-service {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--color-teal);
|
|
padding: 6px 10px;
|
|
background: color-mix(in srgb, var(--color-teal) 10%, transparent);
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
}
|
|
|
|
swp-waitlist-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
swp-waitlist-periods {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
swp-waitlist-periods swp-label {
|
|
font-size: 12px;
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-waitlist-period-tag {
|
|
font-size: 11px;
|
|
padding: 3px 8px;
|
|
background: var(--color-background);
|
|
border-radius: 4px;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
swp-waitlist-dates {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
swp-waitlist-date {
|
|
font-size: 11px;
|
|
color: var(--color-text-secondary);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
swp-waitlist-date i {
|
|
font-size: 12px;
|
|
}
|
|
|
|
swp-waitlist-date.expires {
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
swp-waitlist-date.expires.soon {
|
|
color: var(--color-amber);
|
|
font-weight: 500;
|
|
}
|
|
|
|
swp-waitlist-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding-top: 8px;
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
|
|
swp-waitlist-actions swp-btn {
|
|
flex: 1;
|
|
justify-content: center;
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
swp-waitlist-empty {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 48px 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
swp-waitlist-empty i {
|
|
font-size: 48px;
|
|
color: var(--color-border);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
swp-waitlist-empty span {
|
|
font-size: 14px;
|
|
color: var(--color-text-secondary);
|
|
}
|