/* Roster Control — app.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #f0efe9;
  --surface:      #ffffff;
  --surface2:     #f7f7f5;
  --border:       #e4e4dc;
  --sidebar:      #1f2937;
  --sidebar-hover:#374151;
  --text:         #1a1a1a;
  --muted:        #6b7280;
  --green:        #2d6a4f;
  --green-light:  #ebf5ef;
  --green-mid:    #d1ead8;
  --accent-hover: #245a42;
  --danger:       #dc2626;
  --danger-light: #fef2f2;
  --warning:      #d97706;
  --warning-light:#fffbeb;
  --info:         #2563eb;
  --info-light:   #eff6ff;
  --radius:       8px;
  --shadow:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --sidebar-w:    200px;
  --mobile-nav-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

h1 { font-size: 1.5rem; font-weight: 700; }
h2 { font-size: 1.1rem; font-weight: 600; }
h3 { font-size: 0.95rem; font-weight: 600; }

.hidden { display: none !important; }
.page { display: none; }
.page.active { display: flex; min-height: 100vh; }
#page-landing.page.active { display: block; min-height: 100vh; }

/* ════════════════════════════════════════
   DESKTOP SIDEBAR LAYOUT
════════════════════════════════════════ */
.app-layout { display: flex; width: 100%; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 200;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
}
.sidebar-logo-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sidebar-venue {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-section { padding: 14px 0 6px; }
.sidebar-section-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0 16px;
  margin-bottom: 4px;
}

.sidebar-nav { display: flex; flex-direction: column; gap: 1px; padding: 0 8px; }

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 6px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: all 0.12s;
  width: 100%;
  min-height: 40px;
}
.sidebar-btn:hover { background: var(--sidebar-hover); color: #fff; }
.sidebar-btn.active { background: rgba(255,255,255,0.11); color: #fff; }
.sidebar-btn .icon { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sidebar-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.sidebar-bottom {
  margin-top: auto;
  padding: 10px 8px 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sidebar-user { padding: 6px 10px 8px; }
.sidebar-user-name { font-size: 13px; font-weight: 500; color: #fff; }
.sidebar-user-role { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 1px; }

.sidebar-signout {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  width: 100%;
  min-height: 40px;
  transition: all 0.12s;
}
.sidebar-signout:hover { background: var(--sidebar-hover); color: #fff; }

/* Mobile bottom nav - hidden on desktop */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--mobile-nav-h);
  background: var(--sidebar);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  padding: 0;
}

.mobile-nav-inner {
  display: flex;
  height: 100%;
}

.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  padding: 6px 2px;
  transition: all 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mobile-nav-btn.active { color: #fff; }
.mobile-nav-btn.active svg { stroke-width: 2.2; }

/* Mobile top bar */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 52px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 150;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.mobile-topbar-title { font-size: 14px; font-weight: 600; color: var(--text); }
.mobile-topbar-venue { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════
   MAIN CONTENT AREA
════════════════════════════════════════ */
.app-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-header-title { font-size: 14px; font-weight: 600; }
.main-header-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.main { padding: 20px 24px; flex: 1; }

/* ════════════════════════════════════════
   CARDS, BUTTONS, FORMS
════════════════════════════════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.12s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 36px;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary   { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface2); }
.btn-danger    { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.88; }
.btn-ghost     { background: none; border-color: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--surface2); color: var(--text); }
.btn-sm { padding: 6px 12px; font-size: 12px; min-height: 32px; }
.btn-xs { padding: 4px 8px; font-size: 11px; border-radius: 4px; min-height: 28px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 4px; }

input, select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* 16px prevents iOS zoom */
  outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 500;
  align-items: flex-end; /* slides up from bottom on mobile */
  justify-content: center;
  padding: 0;
}
.modal-backdrop.open { display: flex; }

.modal {
  background: var(--surface);
  border-radius: 16px 16px 0 0;
  padding: 20px 20px 32px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
}

@media (min-width: 769px) {
  .modal-backdrop {
    align-items: center;
  }
  .modal {
    border-radius: 10px;
    max-width: 460px;
  }
}

.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-close {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 22px; padding: 4px;
  border-radius: 4px; line-height: 1; min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--surface2); color: var(--text); }

/* ════════════════════════════════════════
   BADGES
════════════════════════════════════════ */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-draft     { background: #f3f4f6; color: #6b7280; }
.badge-published { background: var(--green-light); color: var(--green); }
.badge-open      { background: var(--info-light); color: var(--info); }
.badge-pending   { background: var(--warning-light); color: var(--warning); }
.badge-approved  { background: var(--green-light); color: var(--green); }
.badge-rejected  { background: var(--danger-light); color: var(--danger); }
.badge-manager   { background: var(--green-light); color: var(--green); }
.badge-staff     { background: #f3f4f6; color: #6b7280; }

/* ════════════════════════════════════════
   PAGE HEADER
════════════════════════════════════════ */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   MONTH OVERVIEW
════════════════════════════════════════ */
.month-nav { display: flex; align-items: center; gap: 10px; }
.month-label { font-size: 15px; font-weight: 600; min-width: 140px; text-align: center; }

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--border);
  gap: 1px;
}

.month-day-header {
  background: var(--surface2);
  padding: 6px 2px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.month-day {
  background: var(--surface);
  padding: 5px 4px;
  min-height: 72px;
  cursor: pointer;
  transition: background 0.1s;
  position: relative;
  overflow: hidden;
}
.month-day:hover { background: var(--green-light); }
.month-day.other-month { background: var(--surface2); }
.month-day.other-month .month-day-num { color: #d1d5db; }
.month-day.today .month-day-num-inner {
  background: var(--green);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}
.month-day.is-week-start { border-left: 2px solid var(--green); }

.month-day-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  height: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.month-day-num-inner {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.month-shift-pip {
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 2px;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  font-weight: 500;
  background: var(--green);
}

.month-week-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.month-day.is-week-start {
  background: #e8f5ee;
  cursor: pointer;
  border-left: 3px solid var(--green);
}
.month-day.is-week-start:active { background: #d1ead8; }

/* Bank holidays */
.month-day.bank-holiday {
  background: #fffbeb;
}
.month-day.bank-holiday.is-week-start {
  background: #f0f9e8;
}
.month-bh-label {
  font-size: 8px;
  font-weight: 700;
  color: #d97706;
  background: #fef3c7;
  border-radius: 3px;
  padding: 0px 3px;
  margin-left: 3px;
  letter-spacing: 0.3px;
  line-height: 14px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   ROTA WEEK GRID
════════════════════════════════════════ */
.rota-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.rota-grid {
  display: grid;
  min-width: 700px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
  box-shadow: var(--shadow);
}

.rota-header-row { display: grid; grid-template-columns: 130px repeat(7, 1fr); gap: 1px; }

.rota-header-cell {
  padding: 8px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: var(--surface2);
  text-align: center;
}
.rota-header-cell:first-child { text-align: left; padding-left: 10px; }
.rota-day-label { font-size: 11px; font-weight: 600; color: var(--text); }
.rota-date-label { font-size: 9px; color: var(--muted); }

.rota-row { display: grid; grid-template-columns: 130px repeat(7, 1fr); gap: 1px; }

.rota-staff-cell {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
}
.staff-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.staff-name { font-weight: 500; font-size: 12px; }

.rota-cell {
  padding: 4px;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--surface);
}

.shift-chip {
  border-left: 3px solid var(--green);
  border-radius: 3px;
  padding: 3px 5px;
  font-size: 10px;
  line-height: 1.3;
  background: var(--green-light);
  position: relative;
}
.shift-chip .chip-label { font-weight: 600; color: var(--green); display: block; }
.shift-chip .chip-time  { color: var(--muted); font-size: 9px; }
.shift-chip .chip-delete {
  position: absolute; top: 2px; right: 3px;
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 14px; line-height: 1; display: none; padding: 0;
  min-width: 20px; min-height: 20px; align-items: center; justify-content: center;
}
.shift-chip:hover .chip-delete { display: flex; }
.chip-delete:hover { color: var(--danger); }

.add-shift-btn {
  background: none;
  border: 1px dashed var(--border);
  border-radius: 4px;
  color: #d1d5db;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 3px;
  transition: all 0.12s;
  align-self: flex-start;
  width: 24px; height: 24px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.add-shift-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ════════════════════════════════════════
   STAFF / TEMPLATE / COVER LISTS
════════════════════════════════════════ */
.staff-list, .template-list, .cover-list { display: flex; flex-direction: column; gap: 8px; }

.staff-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  gap: 12px;
}

.staff-item-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.staff-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: white; flex-shrink: 0;
}
.staff-item-name { font-weight: 500; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.staff-item-email { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.staff-item-actions { display: flex; gap: 6px; flex-shrink: 0; }

.template-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  gap: 12px;
}
.template-swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; margin-right: 8px; flex-shrink: 0; }

.cover-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.cover-item-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; gap: 8px; }
.cover-item-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cover-actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   MY SHIFTS
════════════════════════════════════════ */
.my-shifts-list { display: flex; flex-direction: column; gap: 8px; }
.shift-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  gap: 12px;
  flex-wrap: wrap;
}
.shift-row-date { font-weight: 600; font-size: 13px; }
.shift-row-label { font-size: 12px; color: var(--muted); }
.shift-row-time { font-size: 14px; font-weight: 600; color: var(--green); }

/* ════════════════════════════════════════
   WEEK NAV
════════════════════════════════════════ */
.week-nav { display: flex; align-items: center; gap: 8px; }
.week-label { font-size: 13px; font-weight: 600; min-width: 160px; text-align: center; }

/* ════════════════════════════════════════
   TAB PANELS
════════════════════════════════════════ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 80px; right: 16px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 9999;
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.15s ease;
  max-width: 280px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--danger); }
.toast.info    { border-left: 3px solid var(--info); }
@keyframes slideIn { from { transform: translateX(12px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════ */
.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-state .empty-icon { font-size: 32px; margin-bottom: 10px; }
.empty-state p { font-size: 13px; }

/* ════════════════════════════════════════
   LEGACY LANDING (app.css bits only)
════════════════════════════════════════ */
.landing { min-height: 100vh; background: var(--bg); }
.landing-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 44px; background: var(--surface); border-bottom: 1px solid var(--border);
}
.landing-logo { font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: 1.5px; text-transform: uppercase; }
.landing-footer { text-align: center; padding: 18px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); }

/* ════════════════════════════════════════
   MOBILE — max-width: 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hide desktop sidebar */
  .sidebar { display: none; }

  /* Show mobile elements */
  .mobile-nav    { display: flex; }
  .mobile-topbar { display: flex; }

  /* Push content below topbar and above bottom nav */
  .app-main {
    margin-left: 0;
    padding-top: 52px;
    padding-bottom: var(--mobile-nav-h);
  }

  /* Header hidden on mobile — topbar replaces it */
  .main-header { display: none; }

  .main { padding: 14px 14px; }

  /* Month grid — smaller cells */
  .month-day { min-height: 52px; padding: 3px; }
  .month-shift-pip { font-size: 8px; }
  .month-week-btn { font-size: 8px; padding: 2px 4px; }
  .month-day-header { font-size: 9px; padding: 5px 1px; }

  /* Rota scrolls horizontally — that's fine, just ensure scroll works */
  .rota-wrapper { border-radius: 0; }

  /* Stacks on small screens */
  .page-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .week-nav { width: 100%; justify-content: space-between; }
  .week-label { flex: 1; text-align: center; }

  /* Forms full width */
  .form-row { grid-template-columns: 1fr; }

  /* Modal full-width sheet from bottom */
  .modal { border-radius: 16px 16px 0 0; padding: 20px 16px 40px; }

  /* Staff items stack on very small screens */
  .staff-item { flex-wrap: wrap; }
  .staff-item-actions { width: 100%; justify-content: flex-end; }

  /* Cover actions stack */
  .cover-actions { flex-direction: column; }
  .cover-actions .btn { width: 100%; justify-content: center; }

  /* Toasts above bottom nav */
  #toast-container { bottom: calc(var(--mobile-nav-h) + 12px); right: 12px; }

  /* Publish button full width on mobile */
  #btn-publish, #btn-unpublish { font-size: 12px; padding: 6px 10px; }
}

/* Very small phones */
@media (max-width: 375px) {
  .month-day { min-height: 44px; }
  .month-shift-pip { display: none; }
}
