       body { font-family: 'Inter', sans-serif; background-color: #f0f4f8; user-select: none; }
        .navy-header { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
        
        /* Cell States */
        .cell-normal { color: #334155; border-radius: 8px; }
        .cell-oncall { background-color: #fffbeb !important; color: #d97706; font-weight: 700; border: 1px solid #fbbf24; border-radius: 8px; }
        .cell-off { background-color: #fff1f2 !important; color: #e11d48; font-weight: 700; border: 1px solid #fb7185; border-radius: 8px; }
        
        /* The Floating Pill */
        #hold-menu {
            display: none;
            position: absolute;
            z-index: 100;
            background: #1e293b;
            padding: 6px;
            border-radius: 9999px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transform: translate(-50%, -130%);
            pointer-events: auto;
            animation: springIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes springIn {
            from { opacity: 0; transform: translate(-50%, -100%) scale(0.5); }
            to { opacity: 1; transform: translate(-50%, -130%) scale(1); }
        }

        .pill-btn {
            padding: 8px 16px;
            border-radius: 9999px;
            font-size: 11px;
            font-weight: 800;
            color: white;
            transition: all 0.2s;
            cursor: pointer;
        }
        /* Hover effects while the mouse is held down */
        .pill-btn:hover { transform: scale(1.15); filter: brightness(1.2); }
        .pill-btn.normal:hover { background-color: #2563eb; }
        .pill-btn.oncall:hover { background-color: #d97706; }
        .pill-btn.off:hover { background-color: #e11d48; }
         /* ===== ENTERPRISE COLOR SYSTEM ===== */
:root {
  --brand-primary: #2563eb;
  --brand-primary-dark: #1d4ed8;
  --brand-accent: #0f172a;
  --brand-muted: #64748b;
  --brand-light: #f8fafc;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
}

.enterprise-header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.enterprise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.enterprise-logo {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.enterprise-logo span {
  color: #2563eb;
}

/* Nav Center */
.enterprise-nav {
  display: flex;
  gap: 32px;
}

.enterprise-nav a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.enterprise-nav a:hover {
  color: #2563eb;
}

/* Auth Right */
.enterprise-auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.login-link:hover {
  color: #2563eb;
}

.signup-btn {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.signup-btn:hover {
  background: #1d4ed8;
}


.logo span {
  color: var(--brand-primary);
}

.nav-links a {
  color: #475569;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-primary);
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 120px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: #2563eb;
}

.footer-brand p {
  margin-top: 15px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-columns h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: white;
}

.footer-columns a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-columns a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
