:root {
    --bg-primary: #0f1117;
    --accent-primary: #6366f1;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-subtle: rgba(255, 255, 255, 0.06);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Figtree', sans-serif;
}

body {
    background: #020617;
    color: var(--text-primary);
}

.business-dashboard {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: visible;
    min-height: calc(100vh - 4rem);
}

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.08;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -300px;
    right: -300px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    bottom: -250px;
    left: -250px;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.status-badge {
    border-radius: 9999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.status-checked   { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; }
.status-upcoming  { background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3); color: #818cf8; }
.status-confirm   { background: rgba(251, 146, 60, 0.15); border: 1px solid rgba(251, 146, 60, 0.3); color: #fb923c; }
.status-available { background: rgba(34, 197, 94, 0.1);  border: 1px solid rgba(34, 197, 94, 0.2); color: #4ade80; }
.status-busy      { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); color: #818cf8; }
.status-break     { background: rgba(148, 163, 184, 0.1); border: 1px solid rgba(148, 163, 184, 0.2); color: #94a3b8; }
.status-offline   { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #fca5a5; }

.grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.demo-nav-link-active {
    border-bottom-color: #818cf8 !important;
    color: #f8fafc !important;
}

.demo-nav-link {
    border-bottom: 2px solid transparent;
    color: #94a3b8;
}

.demo-nav-link:hover {
    color: #f8fafc;
    border-bottom-color: #475569;
}

.demo-pill {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.demo-tab-active {
    border-color: rgba(129, 140, 248, 0.65) !important;
    background: rgba(99, 102, 241, 0.18) !important;
    color: #e0e7ff !important;
}

@media (max-width: 640px) {
    .demo-nav-hide-mobile {
        display: none;
    }
}
