/* =========================================================
   Approval Mode – color overrides ONLY
   Uses existing app layout (760px card)
   ========================================================= */

/* Page background (staff only) */
body.approval-mode {
  background: linear-gradient(135deg, #0f3d2e, #1b6b44);
}

/* Card surface */
body.approval-mode .card {
  background: linear-gradient(160deg, #0f4d35, #1f7a4f);
  border: 1px solid #1fa36b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* Header / titles */
body.approval-mode h1,
body.approval-mode h2,
body.approval-mode h3 {
  color: #e6fff1;
}

/* Muted text */
body.approval-mode .muted {
  color: rgba(230, 255, 241, 0.7);
}

body {
  background: linear-gradient(135deg, #0f3d2e, #1b6b44) !important;
}

/* =========================================
   Breadcrumbs (staff apps)
   ========================================= */

.breadcrumb {
  font-size: 12px;          /* smaller text */
  line-height: 1.2;
  margin-bottom: 8px;       /* pull card upward */
  color: #6b7280;           /* muted gray */
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 6px;
  color: #9ca3af;
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.2s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #2c7be5;
}

.switch input:checked + .slider:before {
  transform: translateX(22px);
}translateX(20px);
}

.toggle span {
  font-size: 14px;
}