/* ==========================================================
   Mboka Announcements — public customer banner + employee notice
   ========================================================== */
:root{
  --ann-red:#dc141c;
  --ann-red-dark:#89070e;
  --ann-red-deep:#4a0307;
  --ann-blue:#2563eb;
  --ann-blue-dark:#0f2763;
  --ann-amber:#f59e0b;
  --ann-amber-dark:#713f12;
  --ann-green:#10b981;
  --ann-green-dark:#064e3b;
}

/* Login page shell upgrade */
body.ui-auth.mboka-auth-upgrade{
  display:block !important;
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(980px 520px at 74% 18%, rgba(37,99,235,.26), transparent 60%),
    radial-gradient(980px 520px at 8% 90%, rgba(14,165,233,.12), transparent 62%),
    linear-gradient(135deg, #050914 0%, #081226 46%, #020712 100%);
}
body.ui-auth.mboka-auth-upgrade::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(2,6,23,.82), rgba(2,6,23,.22), rgba(2,6,23,.88)),
    radial-gradient(700px 340px at 82% 58%, rgba(30,64,175,.18), transparent 68%);
  z-index:0;
}
.mboka-auth-screen{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.mboka-auth-hero{
  flex:1 1 auto;
  display:grid;
  grid-template-columns:minmax(280px, 420px) minmax(320px, 520px) minmax(260px, 1fr);
  align-items:center;
  gap:44px;
  width:min(1420px, calc(100% - 56px));
  margin:0 auto;
  padding:58px 0 70px;
}
.mboka-auth-left{
  border-right:1px solid rgba(148,163,184,.24);
  padding:24px 44px 24px 0;
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:34px;
}
.mboka-auth-logo-wrap{
  display:grid;
  justify-items:start;
  gap:16px;
}
.mboka-auth-logo{
  width:190px;
  height:180px;
  object-fit:contain;
  filter:drop-shadow(0 24px 28px rgba(0,0,0,.36));
}
.mboka-auth-brand-title{
  margin:0;
  color:#f8fbff;
  font-size:38px;
  line-height:.94;
  letter-spacing:.04em;
  font-weight:900;
  text-transform:uppercase;
}
.mboka-auth-brand-title span{
  display:block;
  color:#f22538;
  font-size:.63em;
  letter-spacing:.24em;
  margin-top:8px;
}
.mboka-auth-tagline{
  margin:0;
  color:#d9e6ff;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.mboka-trust-list{
  display:grid;
  gap:22px;
}
.mboka-trust-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:center;
}
.mboka-trust-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(59,130,246,.34);
  background:rgba(2,6,23,.42);
  color:#3b82f6;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 14px 30px rgba(0,0,0,.2);
}
.mboka-trust-item strong{
  display:block;
  color:#f8fbff;
  font-size:16px;
}
.mboka-trust-item span{
  display:block;
  color:#9fb3d9;
  margin-top:3px;
  font-size:13px;
}
.mboka-auth-card-panel{
  width:min(520px, 100%);
}
body.ui-auth .login-card.ui-premium-login.mboka-auth-card{
  width:100%;
  padding:34px;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.28);
  background:linear-gradient(180deg, rgba(15,23,42,.86), rgba(8,13,26,.92));
  box-shadow:0 32px 80px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}
.mboka-login-shield{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  color:#3b82f6;
  border-radius:20px;
  background:rgba(37,99,235,.12);
  border:1px solid rgba(59,130,246,.28);
}
body.ui-auth .mboka-auth-card h3{
  text-align:center;
  color:#f8fbff;
  font-size:28px;
  margin:0 0 8px !important;
}
body.ui-auth .mboka-auth-card .muted{
  color:#a7b7d6;
}
body.ui-auth .mboka-auth-card > .muted{
  text-align:center;
  font-size:15px;
  margin-bottom:28px !important;
}
body.ui-auth .mboka-auth-card .brand{ display:none !important; }
body.ui-auth .mboka-auth-card .form{
  gap:18px;
}
.mboka-field-shell label,
body.ui-auth .mboka-auth-card label{
  color:#f3f6ff;
  font-size:14px;
  font-weight:800;
}
.mboka-field-shell{
  display:grid;
  gap:8px;
}
.mboka-input-wrap{
  position:relative;
}
.mboka-input-wrap svg{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  color:#8ca3c9;
  pointer-events:none;
}
body.ui-auth .mboka-auth-card .input{
  min-height:58px;
  padding:15px 16px 15px 48px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(2,6,23,.26);
  color:#f8fbff;
  font-size:15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
body.ui-auth .mboka-auth-card .input:focus{
  border-color:rgba(59,130,246,.75);
  outline:3px solid rgba(59,130,246,.18);
}
.mboka-password-toggle{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  color:#8ca3c9;
  width:38px;
  height:38px;
  border-radius:12px;
  cursor:pointer;
}
.mboka-password-toggle:hover{ background:rgba(255,255,255,.06); color:#e7eefc; }
.mboka-login-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:2px;
}
.mboka-login-row label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#d9e6ff !important;
  font-size:13px !important;
}
.mboka-login-row a{ color:#60a5fa; font-weight:800; font-size:13px; }
body.ui-auth .mboka-auth-card .btn.success{
  min-height:64px;
  margin-top:8px;
  border-radius:14px;
  font-size:18px;
  font-weight:900;
  background:linear-gradient(180deg, #2f7df3, #1d4ed8);
  border-color:#2563eb;
  box-shadow:0 18px 36px rgba(37,99,235,.32);
}
.mboka-auth-car-ghost{
  align-self:stretch;
  min-height:520px;
  border-radius:34px;
  border:1px solid rgba(148,163,184,.08);
  background:
    radial-gradient(420px 260px at 54% 55%, rgba(96,165,250,.22), transparent 68%),
    linear-gradient(135deg, rgba(15,23,42,.24), rgba(2,6,23,.64));
  position:relative;
  overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.mboka-auth-car-ghost::before{
  content:"";
  position:absolute;
  inset:52px -130px 0 64px;
  border-radius:42% 10% 12% 42%;
  background:
    radial-gradient(160px 80px at 80% 46%, rgba(59,130,246,.35), transparent 42%),
    linear-gradient(180deg, rgba(15,23,42,.78), rgba(3,7,18,.94));
  border:1px solid rgba(148,163,184,.08);
  filter:drop-shadow(0 38px 48px rgba(0,0,0,.52));
  transform:skewX(-8deg);
}
.mboka-auth-car-ghost::after{
  content:"";
  position:absolute;
  right:40px;
  bottom:70px;
  width:330px;
  height:116px;
  border-radius:999px;
  border:22px solid rgba(15,23,42,.94);
  box-shadow:0 0 0 2px rgba(96,165,250,.16), inset 0 0 0 2px rgba(96,165,250,.12);
}
.mboka-auth-footer{
  border-top:1px solid rgba(148,163,184,.18);
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
  padding:0 max(28px, calc((100vw - 1420px)/2));
  color:#b7c7e6;
  background:rgba(2,6,23,.22);
}
.mboka-auth-footer a{ color:#dbeafe; font-weight:800; }
.mboka-auth-footer .footer-contact{ display:flex; gap:10px; align-items:center; }

/* Public customer announcement */
.mboka-customer-announcement-root{
  position:relative;
  z-index:3;
  width:100%;
}
.mboka-customer-announcement-root.is-hidden{ display:none; }
.mboka-customer-bulletin{
  --notice-accent:#dc141c;
  --notice-accent-2:#7f0710;
  width:100%;
  color:#fff;
  background:linear-gradient(180deg, var(--notice-accent), var(--notice-accent-2));
  border-bottom:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 40px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.20);
}
.mboka-customer-bulletin[data-priority="info"]{ --notice-accent:#2563eb; --notice-accent-2:#123776; }
.mboka-customer-bulletin[data-priority="holiday"]{ --notice-accent:#1f8f64; --notice-accent-2:#065f46; }
.mboka-customer-bulletin[data-priority="maintenance"]{ --notice-accent:#db8510; --notice-accent-2:#7a3e08; }
.mboka-customer-bulletin[data-priority="urgent"]{ --notice-accent:#ef101c; --notice-accent-2:#70050a; }
.mboka-customer-bulletin-main{
  display:grid;
  grid-template-columns:310px 1fr 252px;
  align-items:center;
  min-height:118px;
  width:min(1680px, 100%);
  margin:0 auto;
}
.mboka-customer-bulletin-label{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 28px;
  border-right:1px solid rgba(255,255,255,.22);
  min-height:118px;
}
.mboka-customer-bulletin-icon{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16), 0 10px 22px rgba(0,0,0,.2);
}
.mboka-customer-bulletin-icon svg{ width:42px; height:42px; }
.mboka-customer-bulletin-label strong{
  display:block;
  font-size:31px;
  line-height:1.02;
  letter-spacing:.02em;
  font-weight:950;
  text-transform:uppercase;
}
.mboka-customer-bulletin-copy{
  padding:16px 38px;
  min-width:0;
}
.mboka-customer-bulletin-title{
  font-size:36px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.035em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mboka-customer-bulletin-message{
  margin-top:10px;
  font-size:22px;
  line-height:1.28;
  font-weight:750;
  opacity:.96;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mboka-customer-bulletin-meta{
  display:grid;
  gap:12px;
  justify-items:start;
  padding:18px 24px;
  border-left:1px solid rgba(255,255,255,.22);
}
.mboka-customer-bulletin-priority{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.16);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.mboka-customer-bulletin-date{
  display:flex;
  align-items:center;
  gap:9px;
  color:#fff;
  font-size:15px;
  font-weight:850;
}
.mboka-customer-bulletin-ticker{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  height:52px;
  padding:0 28px;
  background:rgba(0,0,0,.88);
  border-top:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.mboka-customer-ticker-viewport{
  overflow:hidden;
  min-width:0;
}
.mboka-customer-ticker-track{
  display:inline-flex;
  align-items:center;
  gap:48px;
  white-space:nowrap;
  min-width:100%;
  animation:mbokaTicker 34s linear infinite;
}
.mboka-customer-ticker-track span{
  font-size:17px;
  color:#f8fbff;
}
.mboka-customer-ticker-track b{ color:#fff; }
.mboka-announcement-count{
  color:#f8fbff;
  font-size:13px;
  font-weight:850;
  white-space:nowrap;
}
.mboka-customer-announcement-controls{
  display:flex;
  align-items:center;
  gap:8px;
}
.mboka-announcement-nav-btn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.mboka-announcement-nav-btn:hover{ background:rgba(255,255,255,.16); }
@keyframes mbokaTicker{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion:reduce){
  .mboka-customer-ticker-track{ animation:none; }
}

/* Formal employee notice */
.mboka-employee-announcement-root{
  padding:0 20px;
  background:rgba(15,23,42,.78);
  border-bottom:1px solid rgba(148,163,184,.16);
}
.mboka-employee-announcement-root.is-hidden{ display:none; }
.mboka-employee-notice{
  max-width:1380px;
  margin:12px auto;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:14px;
  padding:13px 15px;
  border:1px solid rgba(96,165,250,.24);
  border-radius:16px;
  color:#e7eefc;
  background:linear-gradient(180deg, rgba(15,23,42,.94), rgba(8,13,26,.94));
  box-shadow:0 14px 26px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
}
.mboka-employee-notice[data-priority="urgent"],
.mboka-employee-notice[data-priority="important"]{ border-color:rgba(248,113,113,.38); }
.mboka-employee-notice[data-priority="maintenance"]{ border-color:rgba(245,158,11,.42); }
.mboka-employee-notice[data-priority="holiday"]{ border-color:rgba(16,185,129,.34); }
.mboka-employee-notice-icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(59,130,246,.14);
  color:#93c5fd;
}
.mboka-employee-notice-main{ min-width:0; }
.mboka-employee-notice-line{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:#f8fbff;
  font-weight:900;
}
.mboka-employee-notice-copy{
  color:#b7c7e6;
  margin-top:3px;
  font-size:13px;
  line-height:1.45;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mboka-employee-notice-label{
  padding:5px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#dbeafe;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:950;
}
.mboka-employee-notice-meta{
  color:#9fb3d9;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

/* Announcement admin workspace */
.ann-shell{
  display:grid;
  grid-template-columns:minmax(340px, 430px) minmax(0, 1fr);
  gap:18px;
  max-width:1480px;
  margin:0 auto;
}
.ann-card{
  background:var(--card);
  border:1px solid var(--outline);
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.ann-card .ann-card-hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  border-bottom:1px solid var(--outline);
}
.ann-card .ann-card-hd h3{ margin:0; }
.ann-card .ann-card-bd{ padding:20px; }
.ann-form-grid{ display:grid; gap:14px; }
.ann-two{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ann-check-row{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.ann-check-row label{ display:flex; align-items:center; gap:8px; color:#dbeafe; font-weight:800; }
.ann-audience-grid,
.ann-priority-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:9px;
}
.ann-choice{
  border:1px solid rgba(148,163,184,.22);
  background:rgba(255,255,255,.03);
  color:#e7eefc;
  border-radius:14px;
  padding:12px;
  cursor:pointer;
  text-align:left;
  display:grid;
  gap:5px;
}
.ann-choice strong{ display:block; font-size:13px; }
.ann-choice span{ display:block; color:#9fb3d9; font-size:11px; line-height:1.3; }
.ann-choice.is-active{
  border-color:rgba(59,130,246,.70);
  background:rgba(59,130,246,.13);
  box-shadow:0 0 0 3px rgba(59,130,246,.12);
}
.ann-char-row{ display:flex; justify-content:space-between; color:#9fb3d9; font-size:12px; }
.ann-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.ann-list{ display:grid; gap:12px; }
.ann-item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  padding:14px;
  border:1px solid rgba(148,163,184,.16);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}
.ann-item-title{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; color:#f8fbff; font-weight:900; }
.ann-item-copy{ margin-top:5px; color:#b7c7e6; font-size:13px; line-height:1.45; }
.ann-item-meta{ margin-top:8px; display:flex; flex-wrap:wrap; gap:8px; color:#9fb3d9; font-size:12px; }
.ann-item-actions{ display:flex; align-items:start; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.ann-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.18);
  color:#dbeafe;
  background:rgba(255,255,255,.04);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.ann-pill.active{ color:#bbf7d0; border-color:rgba(34,197,94,.34); background:rgba(34,197,94,.10); }
.ann-pill.draft{ color:#fde68a; border-color:rgba(245,158,11,.34); background:rgba(245,158,11,.10); }
.ann-pill.expired{ color:#fecaca; border-color:rgba(239,68,68,.34); background:rgba(239,68,68,.10); }
.ann-preview-stack{ display:grid; gap:14px; }
.ann-preview-frame{
  border:1px solid rgba(148,163,184,.16);
  border-radius:18px;
  overflow:hidden;
  background:rgba(2,6,23,.36);
}
.ann-preview-caption{ padding:10px 14px; color:#9fb3d9; font-weight:900; border-bottom:1px solid rgba(148,163,184,.12); }
.ann-preview-frame .mboka-customer-bulletin-main{ grid-template-columns:220px 1fr 170px; min-height:86px; }
.ann-preview-frame .mboka-customer-bulletin-label{ min-height:86px; padding:12px; gap:10px; }
.ann-preview-frame .mboka-customer-bulletin-icon{ width:52px; height:52px; }
.ann-preview-frame .mboka-customer-bulletin-label strong{ font-size:20px; }
.ann-preview-frame .mboka-customer-bulletin-title{ font-size:24px; }
.ann-preview-frame .mboka-customer-bulletin-message{ font-size:15px; }
.ann-preview-frame .mboka-customer-bulletin-meta{ padding:12px; gap:8px; }
.ann-preview-frame .mboka-customer-bulletin-ticker{ height:40px; padding:0 14px; }
.ann-empty{
  padding:24px;
  text-align:center;
  color:#9fb3d9;
  border:1px dashed rgba(148,163,184,.22);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.ann-kpis{ display:grid; grid-template-columns:repeat(4, minmax(0, 1fr)); gap:12px; margin-bottom:16px; }
.ann-kpi{
  border:1px solid rgba(148,163,184,.16);
  border-radius:16px;
  padding:14px;
  background:rgba(255,255,255,.03);
}
.ann-kpi strong{ display:block; font-size:24px; color:#f8fbff; }
.ann-kpi span{ color:#9fb3d9; font-size:12px; }

@media(max-width:1200px){
  .mboka-auth-hero{ grid-template-columns:360px 1fr; }
  .mboka-auth-car-ghost{ display:none; }
  .mboka-customer-bulletin-main{ grid-template-columns:250px 1fr 210px; }
  .mboka-customer-bulletin-title{ font-size:28px; }
  .mboka-customer-bulletin-message{ font-size:18px; }
  .mboka-customer-bulletin-label strong{ font-size:25px; }
}
@media(max-width:980px){
  .mboka-auth-hero{ grid-template-columns:1fr; gap:24px; padding:28px 0 40px; }
  .mboka-auth-left{ min-height:auto; border-right:0; border-bottom:1px solid rgba(148,163,184,.18); padding:0 0 24px; align-items:center; text-align:center; }
  .mboka-auth-logo-wrap{ justify-items:center; }
  .mboka-trust-list{ grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px; width:100%; }
  .mboka-trust-item{ grid-template-columns:1fr; justify-items:center; text-align:center; }
  .mboka-customer-bulletin-main{ grid-template-columns:1fr; }
  .mboka-customer-bulletin-label,
  .mboka-customer-bulletin-meta{ min-height:auto; border:0; border-bottom:1px solid rgba(255,255,255,.18); }
  .ann-shell{ grid-template-columns:1fr; }
  .ann-audience-grid,.ann-priority-grid{ grid-template-columns:1fr; }
}
@media(max-width:680px){
  .mboka-auth-hero{ width:min(100% - 28px, 520px); }
  .mboka-trust-list{ grid-template-columns:1fr; }
  .mboka-auth-brand-title{ font-size:30px; }
  body.ui-auth .login-card.ui-premium-login.mboka-auth-card{ padding:24px; }
  .mboka-auth-footer{ flex-direction:column; text-align:center; padding:18px; }
  .mboka-customer-bulletin-title{ font-size:22px; white-space:normal; }
  .mboka-customer-bulletin-message{ font-size:15px; white-space:normal; }
  .mboka-customer-bulletin-ticker{ grid-template-columns:1fr; height:auto; padding:12px; gap:8px; }
  .mboka-customer-announcement-controls{ display:none; }
  .mboka-employee-notice{ grid-template-columns:1fr; }
  .mboka-employee-notice-copy{ white-space:normal; }
  .ann-two,.ann-kpis{ grid-template-columns:1fr; }
  .ann-item{ grid-template-columns:1fr; }
}

/* Settings-controlled visibility + dismiss controls */
.mboka-announcement-close-btn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:24px;
  line-height:1;
  font-weight:900;
}
.mboka-announcement-close-btn:hover{
  background:rgba(255,255,255,.22);
  transform:translateY(-1px);
}
.mboka-announcement-close-btn.small{
  width:34px;
  height:34px;
  font-size:21px;
  color:#dbeafe;
  border-color:rgba(148,163,184,.22);
  background:rgba(255,255,255,.06);
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-main,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-main{
  min-height:74px;
  grid-template-columns:230px 1fr 210px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-label,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-label{
  min-height:74px;
  padding:12px 22px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-icon,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-icon{
  width:52px;
  height:52px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-label strong,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-label strong{
  font-size:22px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-title,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-title{
  font-size:24px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-message,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-message{
  font-size:16px;
  margin-top:5px;
}
.mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-ticker,
.mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-ticker{
  height:42px;
}
.mboka-employee-notice[data-style="compact"],
.mboka-employee-announcement-root.is-compact .mboka-employee-notice{
  margin:8px auto;
  padding:9px 12px;
  border-radius:12px;
}
.mboka-employee-notice[data-style="compact"] .mboka-employee-notice-copy,
.mboka-employee-announcement-root.is-compact .mboka-employee-notice-copy{
  display:none;
}
@media(max-width:980px){
  .mboka-customer-bulletin[data-style="compact"] .mboka-customer-bulletin-main,
  .mboka-customer-announcement-root.is-compact .mboka-customer-bulletin-main{ grid-template-columns:1fr; }
}

/* Login page careers / application link upgrade */
.mboka-apply-card{
  margin-top:18px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  padding:13px 14px;
  border:1px solid rgba(96,165,250,.26);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(37,99,235,.12), rgba(15,23,42,.46));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 16px 34px rgba(0,0,0,.22);
}
.mboka-apply-card-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#93c5fd;
  background:rgba(59,130,246,.16);
  border:1px solid rgba(96,165,250,.28);
  font-weight:950;
}
.mboka-apply-card strong{
  display:block;
  color:#f8fbff;
  font-size:14px;
  font-weight:950;
}
.mboka-apply-card span{
  display:block;
  color:#9fb3d9;
  font-size:12px;
  line-height:1.35;
  margin-top:2px;
}
.mboka-apply-card-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:12px;
  color:#ffffff !important;
  text-decoration:none;
  font-size:12px;
  font-weight:950;
  white-space:nowrap;
  background:linear-gradient(180deg, #2563eb, #1d4ed8);
  border:1px solid rgba(96,165,250,.48);
  box-shadow:0 12px 24px rgba(37,99,235,.28);
}
.mboka-apply-card-link:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(37,99,235,.35);
}
.mboka-auth-footer{
  flex-wrap:wrap;
  padding-left:max(28px, calc((100vw - 1420px)/2));
  padding-right:max(118px, calc((100vw - 1420px)/2));
}
.mboka-auth-footer-careers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(96,165,250,.26);
  background:rgba(37,99,235,.10);
  color:#dbeafe !important;
  text-decoration:none;
  font-weight:950 !important;
  white-space:nowrap;
}
.mboka-auth-footer-careers:hover{
  background:rgba(37,99,235,.18);
  border-color:rgba(96,165,250,.44);
}
@media(max-width:680px){
  .mboka-apply-card{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .mboka-auth-footer{ padding-right:18px; }
}


/* ==========================================================
   Compact premium login + right-side vehicle image upgrade
   - Keeps top space available for customer announcements
   - Removes footer career crowding
   - Replaces empty right panel with actual vehicle photo
   ========================================================== */
body.ui-auth.mboka-auth-upgrade{
  background:
    radial-gradient(880px 480px at 76% 12%, rgba(37,99,235,.24), transparent 60%),
    radial-gradient(760px 430px at 8% 88%, rgba(14,165,233,.11), transparent 62%),
    linear-gradient(135deg, #040814 0%, #081225 48%, #020711 100%);
}
.mboka-auth-screen{
  min-height:100vh;
}
.mboka-auth-hero{
  grid-template-columns:minmax(260px, 390px) minmax(330px, 470px) minmax(320px, 430px);
  gap:40px;
  width:min(1390px, calc(100% - 56px));
  padding:72px 0 52px;
  align-items:center;
}
.mboka-customer-announcement-root:not(.is-hidden) + .mboka-auth-hero{
  padding-top:30px;
}
.mboka-auth-left{
  min-height:455px;
  padding:18px 38px 18px 0;
  gap:26px;
}
.mboka-auth-logo{
  width:160px;
  height:150px;
}
.mboka-auth-brand-title{
  font-size:33px;
}
.mboka-auth-tagline{
  font-size:11px;
}
.mboka-trust-list{
  gap:18px;
}
.mboka-trust-item{
  grid-template-columns:48px 1fr;
  gap:13px;
}
.mboka-trust-icon{
  width:48px;
  height:48px;
}
.mboka-trust-item strong{
  font-size:15px;
}
.mboka-trust-item span{
  font-size:12px;
}
.mboka-auth-card-panel{
  width:100%;
  max-width:470px;
}
body.ui-auth .login-card.ui-premium-login.mboka-auth-card{
  padding:28px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(15,23,42,.88), rgba(8,13,26,.94));
}
.mboka-login-shield{
  width:48px;
  height:48px;
  margin-bottom:10px;
  border-radius:17px;
}
body.ui-auth .mboka-auth-card h3{
  font-size:25px;
  margin-bottom:6px !important;
}
body.ui-auth .mboka-auth-card > .muted{
  font-size:14px;
  margin-bottom:20px !important;
}
body.ui-auth .mboka-auth-card .form{
  gap:14px;
}
.mboka-field-shell{
  gap:7px;
}
.mboka-field-shell label,
body.ui-auth .mboka-auth-card label{
  font-size:13px;
}
body.ui-auth .mboka-auth-card .input{
  min-height:50px;
  padding-top:12px;
  padding-bottom:12px;
  border-radius:13px;
  font-size:14px;
}
.mboka-login-row{
  margin-top:0;
}
.mboka-login-row label,
.mboka-login-row a{
  font-size:12px !important;
}
body.ui-auth .mboka-auth-card .btn.success{
  min-height:54px;
  margin-top:4px;
  border-radius:14px;
  font-size:16px;
}
.mboka-apply-card{
  margin-top:12px;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
}
.mboka-apply-card-icon{
  width:32px;
  height:32px;
  border-radius:11px;
}
.mboka-apply-card strong{
  font-size:13px;
}
.mboka-apply-card span{
  font-size:11px;
}
.mboka-apply-card-link{
  min-height:34px;
  padding:0 12px;
  border-radius:10px;
  font-size:11px;
}
.mboka-auth-car-ghost{
  display:block;
  align-self:center;
  min-height:590px;
  height:min(68vh, 640px);
  border-radius:34px;
  border:1px solid rgba(96,165,250,.14);
  background:
    linear-gradient(90deg, rgba(2,6,23,.10), rgba(2,6,23,.50)),
    radial-gradient(420px 300px at 70% 48%, rgba(37,99,235,.18), transparent 70%),
    url("../img/login_car_panel.png") center center / cover no-repeat;
  box-shadow:
    0 30px 75px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.02);
  overflow:hidden;
  position:relative;
}
.mboka-auth-car-ghost::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.24) 42%, rgba(2,6,23,.68)),
    radial-gradient(260px 120px at 78% 46%, rgba(96,165,250,.20), transparent 64%);
  border:0;
  filter:none;
  transform:none;
  pointer-events:none;
}
.mboka-auth-car-ghost::after{
  content:"";
  position:absolute;
  inset:18px;
  width:auto;
  height:auto;
  right:18px;
  bottom:18px;
  border-radius:28px;
  border:1px solid rgba(148,163,184,.12);
  box-shadow:inset 0 0 80px rgba(2,6,23,.38);
  pointer-events:none;
}
.mboka-auth-footer{
  min-height:72px;
  padding-left:max(28px, calc((100vw - 1390px)/2));
  padding-right:max(106px, calc((100vw - 1390px)/2));
  gap:18px;
}
.mboka-auth-footer-careers{
  display:none !important;
}
@media(max-width:1240px){
  .mboka-auth-hero{
    grid-template-columns:minmax(250px, 340px) minmax(330px, 460px) minmax(280px, 370px);
    gap:28px;
  }
  .mboka-auth-car-ghost{
    min-height:520px;
    height:min(64vh, 580px);
  }
}
@media(max-width:1080px){
  .mboka-auth-hero{
    grid-template-columns:320px minmax(330px, 470px);
    justify-content:center;
  }
  .mboka-auth-car-ghost{
    display:none;
  }
}
@media(max-width:980px){
  .mboka-auth-hero{
    width:min(100% - 32px, 560px);
    grid-template-columns:1fr;
    padding:28px 0 36px;
  }
  .mboka-customer-announcement-root:not(.is-hidden) + .mboka-auth-hero{
    padding-top:22px;
  }
  .mboka-auth-left{
    min-height:auto;
    padding:0 0 20px;
    gap:20px;
  }
  .mboka-auth-logo{
    width:132px;
    height:124px;
  }
  .mboka-auth-card-panel{
    max-width:none;
  }
}
@media(max-width:680px){
  body.ui-auth .login-card.ui-premium-login.mboka-auth-card{
    padding:22px;
  }
  .mboka-apply-card{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }
  .mboka-auth-footer{
    min-height:auto;
    padding:16px 18px 20px;
  }
}

/* ==========================================================
   Seamless blended vehicle background upgrade
   - Removes the separate-card feeling from the right car area
   - Keeps the right grid space, but paints the vehicle into the
     full page background with soft fade edges
   - Leaves clean top breathing room for customer announcements
   ========================================================== */
body.ui-auth.mboka-auth-upgrade{
  background:
    radial-gradient(900px 500px at 78% 16%, rgba(37,99,235,.22), transparent 62%),
    radial-gradient(760px 430px at 8% 86%, rgba(14,165,233,.11), transparent 62%),
    linear-gradient(135deg, #040814 0%, #081225 48%, #020711 100%);
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-screen{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-screen::before{
  content:"";
  position:absolute;
  top:0;
  right:-3vw;
  bottom:0;
  width:min(58vw, 860px);
  z-index:-2;
  background:
    linear-gradient(90deg, #040814 0%, rgba(4,8,20,.88) 9%, rgba(4,8,20,.42) 30%, rgba(4,8,20,.10) 68%, rgba(4,8,20,.64) 100%),
    linear-gradient(180deg, rgba(4,8,20,.92) 0%, rgba(4,8,20,.16) 19%, rgba(4,8,20,.08) 58%, rgba(4,8,20,.84) 100%),
    radial-gradient(430px 270px at 66% 52%, rgba(59,130,246,.20), transparent 70%),
    url("../img/login_car_panel.png") center right / cover no-repeat;
  opacity:.98;
  filter:saturate(1.08) contrast(1.05);
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 7%, #000 24%, #000 86%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 7%, #000 24%, #000 86%, transparent 100%);
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-screen::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(720px 360px at 73% 49%, rgba(37,99,235,.13), transparent 70%),
    linear-gradient(90deg, rgba(4,8,20,0) 0%, rgba(4,8,20,.13) 52%, rgba(4,8,20,.42) 100%);
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-car-ghost{
  display:block;
  align-self:stretch;
  min-height:560px;
  height:auto;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible;
  pointer-events:none;
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-car-ghost::before,
body.ui-auth.mboka-auth-upgrade .mboka-auth-car-ghost::after{
  display:none !important;
  content:none !important;
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-left,
body.ui-auth.mboka-auth-upgrade .mboka-auth-card-panel,
body.ui-auth.mboka-auth-upgrade .mboka-auth-footer,
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root{
  position:relative;
  z-index:1;
}
body.ui-auth.mboka-auth-upgrade .mboka-auth-hero{
  position:relative;
  z-index:1;
}
@media(max-width:1240px){
  body.ui-auth.mboka-auth-upgrade .mboka-auth-screen::before{
    right:-6vw;
    width:min(55vw, 720px);
    opacity:.86;
  }
  body.ui-auth.mboka-auth-upgrade .mboka-auth-car-ghost{
    min-height:500px;
  }
}
@media(max-width:1080px){
  body.ui-auth.mboka-auth-upgrade .mboka-auth-screen::before{
    opacity:.18;
    width:100vw;
    right:-30vw;
    filter:saturate(.9) contrast(.95) blur(.2px);
  }
  body.ui-auth.mboka-auth-upgrade .mboka-auth-car-ghost{
    display:none !important;
  }
}
@media(max-width:680px){
  body.ui-auth.mboka-auth-upgrade .mboka-auth-screen::before{
    opacity:.10;
    right:-48vw;
    width:130vw;
  }
}

/* ==========================================================
   Announcement page fit repair — prevents clipping/overflow
   ========================================================== */
body.page-announcements,
body.page-announcements .main,
body.page-announcements .content{
  min-width:0 !important;
}
body.page-announcements .content{
  overflow-x:hidden !important;
  padding:clamp(12px, 1.6vw, 24px) !important;
}
body.page-announcements .header{
  gap:12px;
  flex-wrap:wrap;
}
body.page-announcements .header .left,
body.page-announcements .header .right{
  min-width:0;
}
body.page-announcements .header .left{
  flex:1 1 340px;
}
body.page-announcements .header .right{
  flex:0 1 auto;
  flex-wrap:wrap;
  justify-content:flex-end;
}
body.page-announcements .header .left .muted{
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
}
body.page-announcements .ann-shell{
  width:100%;
  max-width:1460px;
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
@media (min-width:1320px){
  body.page-announcements .ann-shell{
    grid-template-columns:minmax(420px, 520px) minmax(0, 1fr);
  }
}
body.page-announcements .ann-card,
body.page-announcements .ann-card-bd,
body.page-announcements .ann-form-grid,
body.page-announcements .fld,
body.page-announcements .ann-preview-stack,
body.page-announcements .ann-preview-frame,
body.page-announcements .ann-list{
  min-width:0 !important;
  max-width:100%;
  box-sizing:border-box;
}
body.page-announcements .ann-card{
  overflow:hidden;
}
body.page-announcements .ann-card .ann-card-hd{
  flex-wrap:wrap;
  align-items:flex-start;
  padding:clamp(14px, 1.6vw, 20px);
}
body.page-announcements .ann-card .ann-card-hd h3{
  font-size:clamp(22px, 2.2vw, 34px);
  line-height:1.08;
  word-break:normal;
}
body.page-announcements .ann-card .ann-card-bd{
  padding:clamp(14px, 1.6vw, 20px);
}
body.page-announcements .input,
body.page-announcements select,
body.page-announcements textarea{
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}
body.page-announcements textarea.input{
  resize:vertical;
  min-height:112px;
  line-height:1.4;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}
body.page-announcements .hint,
body.page-announcements .ann-char-row,
body.page-announcements .ann-choice span,
body.page-announcements .ann-choice strong,
body.page-announcements .ann-item-copy,
body.page-announcements .ann-item-title{
  overflow-wrap:anywhere;
}
body.page-announcements .ann-audience-grid,
body.page-announcements .ann-priority-grid{
  grid-template-columns:repeat(auto-fit, minmax(min(170px, 100%), 1fr)) !important;
  gap:10px;
}
body.page-announcements .ann-priority-grid{
  grid-template-columns:repeat(auto-fit, minmax(min(150px, 100%), 1fr)) !important;
}
body.page-announcements .ann-choice{
  min-width:0;
  min-height:92px;
  padding:12px 14px;
}
body.page-announcements .ann-choice strong{
  font-size:clamp(14px, 1vw, 17px);
}
body.page-announcements .ann-choice span{
  font-size:clamp(12px, .9vw, 14px);
}
body.page-announcements .ann-two{
  grid-template-columns:repeat(auto-fit, minmax(min(240px, 100%), 1fr)) !important;
}
body.page-announcements .ann-check-row{
  gap:12px 18px;
}
body.page-announcements .ann-check-row label{
  min-width:0;
  max-width:100%;
  flex:1 1 220px;
  line-height:1.35;
}
body.page-announcements .ann-check-row input{
  flex:0 0 auto;
}
body.page-announcements .ann-actions{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap:12px;
  justify-content:stretch;
}
body.page-announcements .ann-actions .btn{
  width:100%;
  min-width:0;
  white-space:normal;
  min-height:52px;
  font-weight:900;
}
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-main{
  grid-template-columns:minmax(150px, 220px) minmax(0, 1fr) minmax(120px, 170px);
}
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-title,
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-message{
  white-space:normal;
  overflow-wrap:anywhere;
}
body.page-announcements .ann-item{
  grid-template-columns:minmax(0, 1fr);
}
body.page-announcements .ann-item-actions{
  justify-content:flex-start;
}
body.page-announcements .ann-kpis{
  grid-template-columns:repeat(auto-fit, minmax(min(150px, 100%), 1fr)) !important;
  margin-bottom:0;
}
@media (max-width:760px){
  body.page-announcements .content{
    padding:10px !important;
  }
  body.page-announcements .ann-card{
    border-radius:16px;
  }
  body.page-announcements .ann-card .ann-card-hd,
  body.page-announcements .ann-card .ann-card-bd{
    padding:14px;
  }
  body.page-announcements .ann-audience-grid,
  body.page-announcements .ann-priority-grid{
    grid-template-columns:1fr !important;
  }
  body.page-announcements .ann-choice{
    min-height:auto;
  }
  body.page-announcements .ann-check-row{
    flex-direction:column;
    align-items:stretch;
  }
  body.page-announcements .ann-check-row label{
    flex:0 0 auto;
  }
  body.page-announcements .ann-preview-frame .mboka-customer-bulletin-main{
    grid-template-columns:1fr !important;
  }
}

/* ==========================================================
   Professional announcement emoji/event picker
   ========================================================== */
.mboka-announcement-emoji{
  display:inline-grid;
  place-items:center;
  width:1.25em;
  height:1.25em;
  font-size:1.18em;
  line-height:1;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.22));
}
.mboka-customer-bulletin-icon .mboka-announcement-emoji{
  width:100%;
  height:100%;
  font-size:42px;
}
.mboka-ticker-main-icon .mboka-announcement-emoji{
  width:24px;
  height:24px;
  font-size:20px;
}
.mboka-ticker-emoji{
  display:inline-block;
  margin-right:4px;
}
.mboka-employee-notice-icon .mboka-announcement-emoji{
  width:100%;
  height:100%;
  font-size:20px;
}
body.page-announcements .ann-emoji-field{
  border:1px solid rgba(96,165,250,.18);
  border-radius:18px;
  padding:14px;
  background:linear-gradient(180deg, rgba(37,99,235,.08), rgba(15,23,42,.18));
}
body.page-announcements .ann-emoji-toolbar{
  display:grid;
  grid-template-columns:auto minmax(180px, 1fr) auto auto auto;
  gap:10px;
  align-items:center;
}
body.page-announcements .ann-emoji-current{
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  border:1px solid rgba(96,165,250,.30);
  background:rgba(37,99,235,.14);
  color:#f8fbff;
  cursor:pointer;
  font-weight:900;
  white-space:nowrap;
}
body.page-announcements .ann-emoji-current span{
  font-size:24px;
  line-height:1;
}
body.page-announcements .ann-emoji-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
body.page-announcements .ann-emoji-tab{
  border:1px solid rgba(148,163,184,.18);
  background:rgba(255,255,255,.035);
  color:#b7c7e6;
  padding:8px 11px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
  font-weight:900;
}
body.page-announcements .ann-emoji-tab:hover,
body.page-announcements .ann-emoji-tab.is-active{
  color:#f8fbff;
  border-color:rgba(59,130,246,.62);
  background:rgba(59,130,246,.16);
}
body.page-announcements .ann-emoji-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(42px, 1fr));
  gap:8px;
  max-height:210px;
  overflow:auto;
  padding:12px;
  margin-top:12px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(2,6,23,.25);
}
body.page-announcements .ann-emoji-btn{
  min-width:0;
  height:42px;
  border-radius:13px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:22px;
  line-height:1;
  transition:transform .16s ease, border-color .16s ease, background .16s ease;
}
body.page-announcements .ann-emoji-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(96,165,250,.58);
  background:rgba(59,130,246,.14);
}
body.page-announcements .ann-emoji-btn.is-active{
  border-color:rgba(59,130,246,.82);
  background:rgba(59,130,246,.20);
  box-shadow:0 0 0 3px rgba(59,130,246,.12);
}
body.page-announcements .ann-item-emoji{
  display:inline-grid;
  place-items:center;
  width:27px;
  height:27px;
  border-radius:10px;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(96,165,250,.22);
  font-size:16px;
}
body.page-announcements .ann-empty.small{
  grid-column:1/-1;
  padding:14px;
}
@media(max-width:1180px){
  body.page-announcements .ann-emoji-toolbar{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:680px){
  body.page-announcements .ann-emoji-toolbar{
    grid-template-columns:1fr;
  }
  body.page-announcements .ann-emoji-current,
  body.page-announcements .ann-emoji-toolbar .btn{
    width:100%;
    justify-content:center;
  }
  body.page-announcements .ann-emoji-grid{
    max-height:240px;
    grid-template-columns:repeat(auto-fill, minmax(40px, 1fr));
  }
}

/* ==========================================================
   Announcement emoji picker + independent workspace scroll fix
   ========================================================== */
body.page-announcements .content{
  overflow:hidden !important;
  display:flex;
  flex-direction:column;
  min-height:0 !important;
}
body.page-announcements .ann-shell{
  flex:1 1 auto;
  min-height:0 !important;
  height:100%;
  align-items:stretch;
}
body.page-announcements .ann-shell > .ann-card:first-child{
  min-height:0;
  max-height:100%;
  display:flex;
  flex-direction:column;
}
body.page-announcements .ann-shell > .ann-card:first-child > .ann-card-hd{
  flex:0 0 auto;
}
body.page-announcements .ann-shell > .ann-card:first-child > .ann-card-bd{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  scrollbar-gutter:stable;
  overscroll-behavior:contain;
}
body.page-announcements .ann-side-stack{
  min-height:0;
  max-height:100%;
  overflow:auto;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  align-content:start;
  padding-right:4px;
}
body.page-announcements .ann-emoji-toolbar{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:10px;
  align-items:stretch;
}
body.page-announcements .ann-emoji-current{
  grid-column:1/-1;
  width:100%;
  justify-content:center;
  min-width:0;
}
body.page-announcements .ann-emoji-toolbar .btn{
  width:100%;
  min-width:0;
  min-height:44px;
  white-space:normal;
  line-height:1.15;
  text-align:center;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
body.page-announcements #btnAnnEmojiClear{
  border-color:rgba(239,68,68,.38);
  background:linear-gradient(180deg, rgba(239,68,68,.20), rgba(127,29,29,.28));
}
body.page-announcements .ann-emoji-grid{
  max-height:174px;
}
body.page-announcements .ann-emoji-field .hint{
  font-size:12px;
  line-height:1.35;
}
@media (max-width:980px){
  body.page-announcements .content{
    overflow:auto !important;
    display:block;
  }
  body.page-announcements .ann-shell{
    height:auto;
    min-height:auto !important;
  }
  body.page-announcements .ann-shell > .ann-card:first-child,
  body.page-announcements .ann-side-stack{
    max-height:none;
    overflow:visible;
  }
  body.page-announcements .ann-shell > .ann-card:first-child > .ann-card-bd{
    overflow:visible;
  }
}
@media (max-width:560px){
  body.page-announcements .ann-emoji-toolbar{
    grid-template-columns:1fr !important;
  }
  body.page-announcements .ann-emoji-current,
  body.page-announcements .ann-emoji-toolbar .btn{
    grid-column:auto;
  }
}


/* ==========================================================
   Live Preview ticker visibility fix
   - Customer preview shows the full banner and ticker clearly
   - Removes the extra legal-safe badge from the preview header
   ========================================================== */
body.page-announcements .ann-card .ann-card-hd .ann-pill:empty{
  display:none !important;
}
body.page-announcements #annCustomerPreview{
  width:100%;
  min-width:0;
  overflow:visible;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin{
  border-radius:0 0 16px 16px;
  overflow:hidden;
  box-shadow:none;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{
  grid-template-columns:minmax(150px, 22%) minmax(0, 1fr) minmax(145px, 21%) !important;
  min-height:108px !important;
  align-items:stretch;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label{
  min-height:108px !important;
  padding:14px 16px !important;
  gap:12px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon{
  width:58px !important;
  height:58px !important;
  flex:0 0 auto;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon .mboka-announcement-emoji{
  font-size:38px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label strong{
  font-size:clamp(18px, 1.55vw, 28px) !important;
  line-height:1.05 !important;
  white-space:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:14px 20px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-title{
  font-size:clamp(22px, 2.1vw, 34px) !important;
  line-height:1.08 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-message{
  font-size:clamp(14px, 1.1vw, 18px) !important;
  line-height:1.25 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-meta{
  min-width:0;
  justify-content:center;
  padding:14px 14px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-priority{
  font-size:clamp(12px, 1.05vw, 18px) !important;
  white-space:nowrap;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-date{
  font-size:clamp(12px, .95vw, 16px) !important;
  line-height:1.2;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-ticker{
  height:auto !important;
  min-height:58px !important;
  grid-template-columns:40px minmax(0,1fr) minmax(70px, auto) !important;
  padding:8px 18px !important;
  gap:14px !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-ticker-viewport{
  min-height:40px;
  display:flex;
  align-items:center;
}
body.page-announcements #annCustomerPreview .mboka-customer-ticker-track{
  display:inline-flex !important;
  align-items:center !important;
  gap:42px !important;
  line-height:1.25 !important;
  padding:2px 0;
}
body.page-announcements #annCustomerPreview .mboka-customer-ticker-track span{
  font-size:clamp(14px, 1.15vw, 18px) !important;
  line-height:1.35 !important;
  white-space:nowrap !important;
}
body.page-announcements #annCustomerPreview .mboka-ticker-main-icon{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
}
body.page-announcements #annCustomerPreview .mboka-ticker-main-icon .mboka-announcement-emoji{
  font-size:28px !important;
  width:36px;
  height:36px;
}
body.page-announcements #annCustomerPreview .mboka-customer-announcement-controls{
  min-width:0;
  justify-content:flex-end;
}
body.page-announcements #annCustomerPreview .mboka-announcement-count{
  font-size:clamp(12px, 1vw, 16px) !important;
}
@media (max-width:760px){
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{
    grid-template-columns:1fr !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label,
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-meta{
    min-height:auto !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-title,
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-message{
    white-space:normal !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-ticker{
    grid-template-columns:36px 1fr !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-announcement-controls{
    display:none !important;
  }
}

/* ==========================================================
   Right preview workspace polish
   - Removes any preview header badge/note
   - Gives the right side its own parent scroll
   - Keeps customer/employee preview cards from clipping
   ========================================================== */
body.page-announcements .ann-side-stack{
  position:relative;
  min-height:0 !important;
  height:100% !important;
  max-height:100% !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  padding-right:6px;
  scroll-behavior:smooth;
}
body.page-announcements .ann-side-stack .ann-card{
  min-width:0;
  overflow:hidden;
}
body.page-announcements .ann-side-stack .ann-card .ann-card-hd{
  align-items:center;
}
body.page-announcements .ann-side-stack .ann-card .ann-card-hd > .ann-pill,
body.page-announcements .ann-side-stack .ann-card .ann-card-hd > .badge,
body.page-announcements .ann-side-stack .ann-card .ann-card-hd > span:not(.muted){
  display:none !important;
}
body.page-announcements .ann-preview-frame{
  overflow:hidden !important;
}
body.page-announcements .ann-preview-frame .mboka-customer-announcement-root,
body.page-announcements .ann-preview-frame .mboka-customer-bulletin{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
}
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-copy,
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-label,
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-meta{
  min-width:0 !important;
}
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-title,
body.page-announcements .ann-preview-frame .mboka-customer-bulletin-message{
  word-break:normal !important;
  overflow-wrap:normal !important;
}
body.page-announcements .mboka-employee-announcement-root{
  max-width:100%;
  overflow:hidden;
}
@media (max-width:980px){
  body.page-announcements .ann-side-stack{
    height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    padding-right:0;
  }
}

/* ==========================================================
   Live Preview overflow repair — July 2026
   - Makes the right preview column scroll independently
   - Prevents customer banner text from overlapping
   - Scales the admin preview so it fits the parent panel cleanly
   ========================================================== */
@media (min-width:981px){
  body.page-announcements .main{
    height:100dvh !important;
    min-height:0 !important;
    overflow:hidden !important;
  }
  body.page-announcements .content{
    flex:1 1 0 !important;
    min-height:0 !important;
    height:auto !important;
    overflow:hidden !important;
  }
  body.page-announcements .ann-shell{
    height:calc(100dvh - 104px) !important;
    max-height:calc(100dvh - 104px) !important;
    min-height:0 !important;
    overflow:hidden !important;
    align-items:stretch !important;
  }
  body.page-announcements .ann-shell > .ann-card:first-child,
  body.page-announcements .ann-side-stack{
    height:100% !important;
    max-height:100% !important;
    min-height:0 !important;
  }
  body.page-announcements .ann-side-stack{
    display:grid !important;
    grid-auto-rows:max-content !important;
    align-content:start !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    padding-right:8px !important;
    overscroll-behavior:contain !important;
    scrollbar-gutter:stable both-edges;
  }
  body.page-announcements .ann-side-stack > .ann-card:first-of-type{
    display:flex !important;
    flex-direction:column !important;
    max-height:min(720px, calc(100dvh - 140px)) !important;
    min-height:0 !important;
  }
  body.page-announcements .ann-side-stack > .ann-card:first-of-type > .ann-card-hd{
    flex:0 0 auto !important;
  }
  body.page-announcements .ann-side-stack > .ann-card:first-of-type > .ann-card-bd{
    flex:1 1 auto !important;
    min-height:0 !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    overscroll-behavior:contain !important;
    scrollbar-gutter:stable;
  }
}

body.page-announcements #annCustomerPreview,
body.page-announcements #annCustomerPreview *{
  box-sizing:border-box !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
  border-radius:0 0 16px 16px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{
  display:grid !important;
  grid-template-columns:minmax(132px, 22%) minmax(0, 1fr) minmax(116px, 172px) !important;
  min-height:94px !important;
  align-items:stretch !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label{
  min-width:0 !important;
  min-height:94px !important;
  padding:12px 14px !important;
  gap:10px !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon{
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  flex:0 0 48px !important;
  border-radius:13px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon .mboka-announcement-emoji{
  font-size:30px !important;
  width:38px !important;
  height:38px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label strong{
  display:block !important;
  min-width:0 !important;
  max-width:100% !important;
  font-size:clamp(13px, 1.15vw, 20px) !important;
  line-height:1.04 !important;
  letter-spacing:.01em !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-copy{
  min-width:0 !important;
  max-width:100% !important;
  overflow:hidden !important;
  padding:12px 16px !important;
  justify-content:center !important;
  border-left:1px solid rgba(255,255,255,.18) !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-title{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  font-size:clamp(15px, 1.55vw, 23px) !important;
  line-height:1.08 !important;
  letter-spacing:-.01em !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-message{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin-top:6px !important;
  font-size:clamp(11px, .95vw, 15px) !important;
  line-height:1.25 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-meta{
  min-width:0 !important;
  max-width:100% !important;
  padding:12px 10px !important;
  gap:8px !important;
  overflow:hidden !important;
  align-content:center !important;
  justify-items:stretch !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-priority{
  width:100% !important;
  max-width:100% !important;
  justify-content:center !important;
  padding:8px 9px !important;
  border-radius:10px !important;
  font-size:clamp(10px, .9vw, 14px) !important;
  line-height:1 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-priority svg{
  width:16px !important;
  height:16px !important;
  min-width:16px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-date{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:22px minmax(0,1fr) !important;
  align-items:center !important;
  gap:7px !important;
  font-size:clamp(10px, .78vw, 12px) !important;
  line-height:1.15 !important;
  font-weight:850 !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-date svg{
  width:22px !important;
  height:22px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-ticker{
  min-height:44px !important;
  height:44px !important;
  grid-template-columns:30px minmax(0,1fr) minmax(62px, auto) !important;
  padding:6px 12px !important;
  gap:10px !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-ticker-main-icon,
body.page-announcements #annCustomerPreview .mboka-ticker-main-icon .mboka-announcement-emoji{
  width:28px !important;
  height:28px !important;
  font-size:22px !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-ticker-viewport{
  min-height:28px !important;
  min-width:0 !important;
  overflow:hidden !important;
}
body.page-announcements #annCustomerPreview .mboka-customer-ticker-track span{
  font-size:12px !important;
  line-height:1.25 !important;
  white-space:nowrap !important;
}
body.page-announcements #annCustomerPreview .mboka-announcement-count{
  font-size:11px !important;
}

@media (max-width:760px){
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{
    grid-template-columns:1fr !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-copy{
    border-left:0 !important;
    border-top:1px solid rgba(255,255,255,.16) !important;
  }
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-title,
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-message{
    white-space:normal !important;
  }
}

/* ==========================================================
   Customer login banner publish fix
   - Ensures active customer announcements render at the very top
   - Keeps the hero below the announcement instead of covering it
   ========================================================== */
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root{
  flex:0 0 auto;
  width:100%;
  max-width:100%;
  position:relative;
  z-index:30;
  pointer-events:auto;
}
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root.is-hidden{
  display:none !important;
}
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root:not(.is-hidden){
  display:block !important;
}
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root:not(.is-hidden) + .mboka-auth-hero{
  flex:1 1 auto;
  padding-top:26px !important;
}
body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root .mboka-customer-bulletin{
  position:relative;
  z-index:31;
}
@media(max-width:980px){
  body.ui-auth.mboka-auth-upgrade .mboka-customer-announcement-root:not(.is-hidden) + .mboka-auth-hero{
    padding-top:18px !important;
  }
}


/* ==========================================================
   Customer announcement header hard display fix
   - makes active customer notices visible on login immediately
   - keeps banner above the blended car background
   ========================================================== */
body.ui-auth.mboka-auth-upgrade .mboka-auth-screen{
  align-items:stretch !important;
  justify-content:flex-start !important;
  overflow-y:auto !important;
}
body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot.mboka-customer-announcement-root{
  display:block;
  width:100%;
  max-width:100%;
  margin:0;
  padding:14px clamp(18px, 2.8vw, 44px) 0;
  position:relative;
  z-index:999 !important;
}
body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot.mboka-customer-announcement-root.is-hidden{
  display:none !important;
  padding:0 !important;
}
body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot .mboka-customer-bulletin{
  width:min(1560px, 100%);
  margin:0 auto;
  position:relative;
  z-index:1000 !important;
  box-shadow:0 22px 60px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.16) inset;
}
body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot:not(.is-hidden) + .mboka-auth-hero{
  padding-top:30px !important;
}
@media(max-width:760px){
  body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot.mboka-customer-announcement-root{ padding:10px 12px 0; }
  body.ui-auth.mboka-auth-upgrade #mbokaCustomerAnnouncementRoot:not(.is-hidden) + .mboka-auth-hero{ padding-top:18px !important; }
}

/* ==========================================================
   Branded announcement action buttons + delete confirmation
   - Removes browser confirm popup
   - Keeps Delete/Pause/Edit/Duplicate visually consistent
   - Ensures delete also clears public login banner cache via JS
   ========================================================== */
body.page-announcements .ann-icon-btn{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:104px;
  min-height:42px;
  white-space:nowrap;
}
body.page-announcements .ann-action-icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  stroke-width:2.15;
}
body.page-announcements .ann-item-actions .btn.warn .ann-action-icon,
body.page-announcements .ann-item-actions .btn.danger .ann-action-icon,
body.page-announcements .ann-item-actions .btn.success .ann-action-icon{
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.20));
}
.ann-confirm-lock{
  overflow:hidden !important;
}
.ann-confirm-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  place-items:center;
  padding:24px;
  background:rgba(1,6,18,.72);
  backdrop-filter:blur(12px);
}
.ann-confirm-overlay.is-open{
  display:grid;
}
.ann-confirm-card{
  width:min(560px, 100%);
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(148,163,184,.22);
  background:
    radial-gradient(420px 200px at 84% 0%, rgba(239,68,68,.18), transparent 64%),
    linear-gradient(180deg, rgba(15,23,42,.98), rgba(7,12,24,.98));
  box-shadow:0 34px 90px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.06);
  color:#eaf2ff;
}
.ann-confirm-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:#fecaca;
  background:linear-gradient(180deg, rgba(239,68,68,.22), rgba(127,29,29,.34));
  border:1px solid rgba(248,113,113,.28);
  box-shadow:0 16px 36px rgba(127,29,29,.26), inset 0 1px 0 rgba(255,255,255,.08);
}
.ann-confirm-icon .ann-action-icon{
  width:30px;
  height:30px;
}
.ann-confirm-body h4{
  margin:0;
  color:#f8fbff;
  font-size:26px;
  line-height:1.08;
  font-weight:950;
  letter-spacing:-.02em;
}
.ann-confirm-body p{
  margin:10px 0 0;
  color:#b7c7e6;
  font-size:14px;
  line-height:1.45;
}
.ann-confirm-meta{
  margin-top:14px;
  padding:11px 12px;
  border-radius:14px;
  color:#dbeafe;
  background:rgba(2,6,23,.42);
  border:1px solid rgba(148,163,184,.16);
  font-weight:850;
  overflow-wrap:anywhere;
}
.ann-confirm-actions{
  grid-column:1 / -1;
  display:flex;
  justify-content:flex-end;
  gap:12px;
  padding-top:8px;
}
.ann-confirm-actions .btn{
  min-width:150px;
  min-height:48px;
  font-weight:950;
  border-radius:14px;
}
.ann-confirm-actions .btn.danger{
  background:linear-gradient(180deg, #ef4444, #b91c1c) !important;
  border-color:rgba(248,113,113,.48) !important;
  color:#fff !important;
  box-shadow:0 16px 30px rgba(185,28,28,.28);
}
@media(max-width:640px){
  .ann-confirm-card{
    grid-template-columns:1fr;
    justify-items:start;
    padding:18px;
  }
  .ann-confirm-actions{
    width:100%;
    flex-direction:column-reverse;
  }
  .ann-confirm-actions .btn{
    width:100%;
  }
  body.page-announcements .ann-icon-btn{
    min-width:0;
    flex:1 1 140px;
  }
}

/* Business Footer Settings Upgrade */
body.ui-auth.mboka-auth-upgrade .mboka-auth-footer.mboka-business-footer{
  min-height:86px;
  display:grid !important;
  grid-template-columns:minmax(260px, 1fr) minmax(260px, .9fr) minmax(360px, 1.25fr);
  align-items:center;
  gap:22px;
  padding-left:max(30px, calc((100vw - 1440px)/2));
  padding-right:max(116px, calc((100vw - 1440px)/2));
  border-top:1px solid rgba(148,163,184,.16);
  background:
    linear-gradient(180deg, rgba(3,7,18,.20), rgba(2,6,23,.50)),
    radial-gradient(circle at 82% 0%, rgba(37,99,235,.10), transparent 34%);
  color:#dbeafe;
  font-size:15px;
  font-weight:780;
  letter-spacing:.01em;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-copy{
  color:#c9d8f5;
  font-weight:800;
  white-space:normal;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-slogan{
  color:#dbeafe;
  text-align:center;
  font-weight:900;
  letter-spacing:.015em;
  text-shadow:0 12px 28px rgba(96,165,250,.10);
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-contact{
  display:flex !important;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:7px;
  color:#d7e6ff;
  font-weight:850;
  min-width:0;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-address,
body.ui-auth.mboka-auth-upgrade .mboka-footer-phones{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  max-width:100%;
  line-height:1.25;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-address span:last-child,
body.ui-auth.mboka-auth-upgrade .mboka-footer-phones span:last-child{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-icon{
  display:inline-flex;
  width:22px;
  min-width:22px;
  height:22px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#93c5fd;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(96,165,250,.16);
  font-size:13px;
}
body.ui-auth.mboka-auth-upgrade .mboka-footer-sep{ color:rgba(191,219,254,.48); padding:0 6px; }
body.ui-auth.mboka-auth-upgrade .mboka-business-footer[data-footer-style="compact"]{
  min-height:64px;
  font-size:13px;
  gap:12px;
}
body.ui-auth.mboka-auth-upgrade .mboka-business-footer[data-footer-style="standard"]{
  min-height:76px;
  font-weight:700;
}
@media(max-width:1120px){
  body.ui-auth.mboka-auth-upgrade .mboka-auth-footer.mboka-business-footer{
    grid-template-columns:1fr;
    text-align:center;
    padding:18px 96px 18px 24px;
    gap:9px;
  }
  body.ui-auth.mboka-auth-upgrade .mboka-footer-contact{ align-items:center; }
  body.ui-auth.mboka-auth-upgrade .mboka-footer-address,
  body.ui-auth.mboka-auth-upgrade .mboka-footer-phones{ justify-content:center; }
}
@media(max-width:680px){
  body.ui-auth.mboka-auth-upgrade .mboka-auth-footer.mboka-business-footer{
    padding:16px 18px 88px 18px;
    font-size:13px;
  }
  body.ui-auth.mboka-auth-upgrade .mboka-footer-contact{ gap:9px; }
  body.ui-auth.mboka-auth-upgrade .mboka-footer-address,
  body.ui-auth.mboka-auth-upgrade .mboka-footer-phones{ flex-wrap:wrap; }
}

/* ==========================================================
   Login Service Strip Upgrade
   - Adds Diagnostics • Repairs • Maintenance on the left brand area
   - Keeps the login card and blended car background exactly in place
   - Values are controlled from Settings -> Business Footer
   ========================================================== */
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:10px 16px;
  margin-top:-8px;
  border-radius:11px;
  border:1px solid rgba(96,165,250,.38);
  background:
    linear-gradient(180deg, rgba(30,64,175,.96), rgba(18,52,128,.92)),
    radial-gradient(circle at 15% 0%, rgba(147,197,253,.22), transparent 42%);
  color:#eff6ff;
  box-shadow:
    0 16px 34px rgba(2,6,23,.30),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.18);
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
  line-height:1;
}
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip[hidden],
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip.is-hidden{
  display:none !important;
}
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip span{
  white-space:nowrap;
}
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip i{
  color:#bfdbfe;
  font-style:normal;
  opacity:.92;
  font-weight:900;
}
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip[data-service-style="standard"]{
  background:rgba(15,23,42,.78);
  border-color:rgba(96,165,250,.30);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip[data-service-style="compact"]{
  padding:8px 12px;
  gap:9px;
  font-size:12px;
  border-radius:999px;
}
@media(max-width:980px){
  body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip{
    margin:0 auto;
    justify-content:center;
    flex-wrap:wrap;
  }
}
@media(max-width:520px){
  body.ui-auth.mboka-auth-upgrade .mboka-login-service-strip{
    width:100%;
    gap:8px;
    padding:10px 12px;
    font-size:12px;
  }
}


/* v69 — Create Announcement moved into New Announcement modal */
body.page-announcements.ann-modal-open{
  overflow:hidden !important;
}
body.page-announcements .ann-shell{
  grid-template-columns:1fr !important;
  max-width:1480px !important;
}
body.page-announcements .ann-shell > .ann-card:first-child{
  min-height:unset !important;
  max-height:none !important;
}
body.page-announcements .ann-side-stack{
  width:100% !important;
  max-width:100% !important;
  height:100% !important;
}
@media (min-width:981px){
  body.page-announcements .ann-shell{
    height:calc(100dvh - 104px) !important;
    max-height:calc(100dvh - 104px) !important;
  }
  body.page-announcements .ann-side-stack{
    height:100% !important;
    max-height:100% !important;
    overflow-y:auto !important;
  }
}
body.page-announcements .ann-modal{
  position:fixed !important;
  inset:0 !important;
  z-index:2147482000 !important;
  display:grid !important;
  place-items:center !important;
  padding:24px !important;
}
body.page-announcements .ann-modal[hidden]{
  display:none !important;
}
body.page-announcements .ann-modal-backdrop{
  position:absolute !important;
  inset:0 !important;
  background:rgba(2,6,23,.68) !important;
  backdrop-filter:blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter:blur(14px) saturate(120%) !important;
}
body.page-announcements .ann-modal-panel{
  position:relative !important;
  z-index:1 !important;
  width:min(760px, calc(100vw - 36px)) !important;
  max-height:min(900px, calc(100dvh - 36px)) !important;
  display:flex !important;
  min-height:0 !important;
  animation:annModalRise .16s ease-out both;
}
@keyframes annModalRise{
  from{opacity:0; transform:translateY(12px) scale(.985);}
  to{opacity:1; transform:translateY(0) scale(1);}
}
body.page-announcements .ann-modal-panel .ann-form-card{
  width:100% !important;
  max-height:inherit !important;
  display:flex !important;
  flex-direction:column !important;
  min-height:0 !important;
  border-color:rgba(96,165,250,.24) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.06) !important;
}
body.page-announcements .ann-modal-panel .ann-form-card > .ann-card-hd{
  flex:0 0 auto !important;
  padding:16px 18px !important;
}
body.page-announcements .ann-modal-panel .ann-form-card > .ann-card-bd{
  flex:1 1 auto !important;
  min-height:0 !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  scrollbar-gutter:stable !important;
  padding:18px !important;
}
body.page-announcements .ann-modal-head-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
  flex-wrap:nowrap !important;
}
body.page-announcements .ann-modal-close,
body.page-announcements .ann-modal-cancel{
  background:rgba(15,23,42,.72) !important;
  border-color:rgba(148,163,184,.22) !important;
}
body.page-announcements .ann-form-card .ann-actions{
  position:sticky !important;
  bottom:-18px !important;
  margin:10px -18px -18px !important;
  padding:14px 18px !important;
  background:linear-gradient(180deg, rgba(7,13,26,.82), rgba(7,13,26,.98)) !important;
  border-top:1px solid rgba(148,163,184,.12) !important;
  z-index:3 !important;
}
body.page-announcements .ann-form-card .ann-emoji-grid{
  max-height:148px !important;
}
body.page-announcements #btnAnnNew{
  background:linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color:#f8fbff !important;
  border-color:rgba(96,165,250,.34) !important;
  box-shadow:0 18px 38px rgba(37,99,235,.24), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
@media (max-width:760px){
  body.page-announcements .ann-modal{
    padding:12px !important;
    place-items:stretch !important;
  }
  body.page-announcements .ann-modal-panel{
    width:100% !important;
    max-height:calc(100dvh - 24px) !important;
  }
  body.page-announcements .ann-modal-head-actions{
    flex-direction:column !important;
    align-items:flex-end !important;
  }
  body.page-announcements .ann-form-card .ann-actions .btn{
    flex:1 1 100% !important;
  }
}


/* v70 — Announcement Priority Design Studio */
body.page-announcements .ann-design-studio{
  padding:14px !important;
  border:1px solid rgba(96,165,250,.20) !important;
  border-radius:18px !important;
  background:linear-gradient(180deg, rgba(10,20,40,.72), rgba(7,15,31,.78)) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035) !important;
}
body.page-announcements .ann-design-title{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:12px !important;
  margin-bottom:12px !important;
}
body.page-announcements .ann-design-title strong{
  color:#f3f7ff !important;
  font-size:15px !important;
  font-weight:950 !important;
}
body.page-announcements .ann-design-title span{
  color:#9fb3d9 !important;
  font-size:12px !important;
  line-height:1.3 !important;
  font-weight:750 !important;
  text-align:right !important;
  max-width:260px !important;
}
body.page-announcements .ann-design-studio > .lbl{
  margin-top:12px !important;
}
body.page-announcements .ann-design-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  gap:9px !important;
}
body.page-announcements .ann-design-choice{
  min-height:82px !important;
  padding:11px !important;
  border-radius:15px !important;
}
body.page-announcements .ann-design-choice strong{
  font-size:12.5px !important;
}
body.page-announcements .ann-design-choice span:not(.ann-color-dot){
  font-size:10.5px !important;
}
body.page-announcements .ann-color-style-grid{
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
}
body.page-announcements .ann-color-dot{
  display:inline-block !important;
  width:20px !important;
  height:20px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.28) !important;
  box-shadow:0 0 0 3px rgba(255,255,255,.05) !important;
}
body.page-announcements .ann-color-dot.red{background:linear-gradient(135deg,#ef4444,#991b1b);}
body.page-announcements .ann-color-dot.blue{background:linear-gradient(135deg,#38bdf8,#1d4ed8);}
body.page-announcements .ann-color-dot.green{background:linear-gradient(135deg,#22c55e,#047857);}
body.page-announcements .ann-color-dot.orange{background:linear-gradient(135deg,#f97316,#b45309);}
body.page-announcements .ann-color-dot.purple{background:linear-gradient(135deg,#a855f7,#6d28d9);}
body.page-announcements .ann-color-dot.gold{background:linear-gradient(135deg,#facc15,#b45309);}
body.page-announcements .ann-color-dot.dark{background:linear-gradient(135deg,#334155,#020617);}

@media (max-width:760px){
  body.page-announcements .ann-design-grid,
  body.page-announcements .ann-color-style-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  }
  body.page-announcements .ann-design-title{
    flex-direction:column !important;
  }
  body.page-announcements .ann-design-title span{
    text-align:left !important;
    max-width:none !important;
  }
}

/* Shared color tokens for customer and employee announcement previews/live banners */
.mboka-customer-bulletin[data-color="red"],
.mboka-employee-notice[data-color="red"]{
  --ann-main:#dc2626; --ann-deep:#450a0a; --ann-mid:#991b1b; --ann-soft:rgba(239,68,68,.18); --ann-border:rgba(248,113,113,.42); --ann-text:#fff7f7;
}
.mboka-customer-bulletin[data-color="blue"],
.mboka-employee-notice[data-color="blue"]{
  --ann-main:#2563eb; --ann-deep:#081a4a; --ann-mid:#1e40af; --ann-soft:rgba(59,130,246,.18); --ann-border:rgba(96,165,250,.42); --ann-text:#f5f9ff;
}
.mboka-customer-bulletin[data-color="green"],
.mboka-employee-notice[data-color="green"]{
  --ann-main:#059669; --ann-deep:#042f2e; --ann-mid:#047857; --ann-soft:rgba(16,185,129,.18); --ann-border:rgba(52,211,153,.42); --ann-text:#f0fdf4;
}
.mboka-customer-bulletin[data-color="orange"],
.mboka-employee-notice[data-color="orange"]{
  --ann-main:#f97316; --ann-deep:#431407; --ann-mid:#b45309; --ann-soft:rgba(251,146,60,.18); --ann-border:rgba(251,146,60,.42); --ann-text:#fff7ed;
}
.mboka-customer-bulletin[data-color="purple"],
.mboka-employee-notice[data-color="purple"]{
  --ann-main:#8b5cf6; --ann-deep:#2e1065; --ann-mid:#6d28d9; --ann-soft:rgba(168,85,247,.18); --ann-border:rgba(196,181,253,.42); --ann-text:#faf5ff;
}
.mboka-customer-bulletin[data-color="gold"],
.mboka-employee-notice[data-color="gold"]{
  --ann-main:#eab308; --ann-deep:#422006; --ann-mid:#b45309; --ann-soft:rgba(250,204,21,.20); --ann-border:rgba(253,224,71,.44); --ann-text:#fffbeb;
}
.mboka-customer-bulletin[data-color="dark"],
.mboka-employee-notice[data-color="dark"]{
  --ann-main:#334155; --ann-deep:#020617; --ann-mid:#0f172a; --ann-soft:rgba(148,163,184,.12); --ann-border:rgba(148,163,184,.34); --ann-text:#f8fafc;
}

.mboka-customer-bulletin[data-banner="solid"] .mboka-customer-bulletin-main,
.mboka-customer-bulletin[data-banner="solid"] .mboka-customer-bulletin-ticker{
  background:var(--ann-main) !important;
  color:var(--ann-text) !important;
}
.mboka-customer-bulletin[data-banner="gradient"] .mboka-customer-bulletin-main,
.mboka-customer-bulletin[data-banner="gradient"] .mboka-customer-bulletin-ticker{
  background:linear-gradient(135deg, var(--ann-main), var(--ann-mid) 52%, var(--ann-deep)) !important;
  color:var(--ann-text) !important;
}
.mboka-customer-bulletin[data-banner="soft"]{
  border-color:var(--ann-border) !important;
  box-shadow:0 20px 50px var(--ann-soft), inset 0 1px 0 rgba(255,255,255,.07) !important;
}
.mboka-customer-bulletin[data-banner="soft"] .mboka-customer-bulletin-main,
.mboka-customer-bulletin[data-banner="soft"] .mboka-customer-bulletin-ticker{
  background:linear-gradient(135deg, rgba(15,23,42,.96), var(--ann-soft)) !important;
}
.mboka-customer-bulletin[data-banner="border"]{
  border:2px solid var(--ann-border) !important;
}
.mboka-customer-bulletin[data-banner="border"] .mboka-customer-bulletin-main,
.mboka-customer-bulletin[data-banner="border"] .mboka-customer-bulletin-ticker{
  background:linear-gradient(180deg, rgba(7,13,26,.98), rgba(5,10,20,.98)) !important;
}
.mboka-customer-bulletin[data-banner="urgent"]{
  border-color:rgba(248,113,113,.70) !important;
  box-shadow:0 0 0 3px rgba(239,68,68,.18), 0 24px 60px rgba(127,29,29,.35) !important;
}
.mboka-customer-bulletin[data-banner="urgent"] .mboka-customer-bulletin-main,
.mboka-customer-bulletin[data-banner="urgent"] .mboka-customer-bulletin-ticker{
  background:linear-gradient(135deg, #991b1b, #dc2626 45%, #7f1d1d) !important;
}

.mboka-employee-notice[data-banner="solid"]{
  background:var(--ann-main) !important;
  border-color:var(--ann-border) !important;
  color:var(--ann-text) !important;
}
.mboka-employee-notice[data-banner="gradient"]{
  background:linear-gradient(135deg, var(--ann-main), var(--ann-mid), var(--ann-deep)) !important;
  border-color:var(--ann-border) !important;
  color:var(--ann-text) !important;
}
.mboka-employee-notice[data-banner="soft"]{
  background:linear-gradient(135deg, rgba(15,23,42,.96), var(--ann-soft)) !important;
  border-color:var(--ann-border) !important;
}
.mboka-employee-notice[data-banner="border"]{
  background:rgba(7,13,26,.96) !important;
  border:2px solid var(--ann-border) !important;
}
.mboka-employee-notice[data-banner="urgent"]{
  background:linear-gradient(135deg, #450a0a, #991b1b, #7f1d1d) !important;
  border-color:rgba(248,113,113,.70) !important;
  box-shadow:0 0 0 3px rgba(239,68,68,.18), 0 18px 44px rgba(127,29,29,.25) !important;
}

.mboka-customer-bulletin[data-text="bold"] .mboka-customer-bulletin-title,
.mboka-customer-bulletin[data-text="bold"] .mboka-customer-bulletin-message,
.mboka-employee-notice[data-text="bold"] .mboka-employee-notice-line,
.mboka-employee-notice[data-text="bold"] .mboka-employee-notice-copy{font-weight:950 !important;}
.mboka-customer-bulletin[data-text="uppercase"] .mboka-customer-bulletin-title,
.mboka-customer-bulletin[data-text="uppercase"] .mboka-customer-bulletin-message,
.mboka-employee-notice[data-text="uppercase"] .mboka-employee-notice-line,
.mboka-employee-notice[data-text="uppercase"] .mboka-employee-notice-copy{
  text-transform:uppercase !important;
  letter-spacing:.035em !important;
}
.mboka-customer-bulletin[data-text="large"] .mboka-customer-bulletin-title{font-size:clamp(26px, 2.6vw, 42px) !important;}
.mboka-customer-bulletin[data-text="large"] .mboka-customer-bulletin-message{font-size:clamp(16px, 1.35vw, 22px) !important;}
.mboka-employee-notice[data-text="large"] .mboka-employee-notice-line{font-size:18px !important;}
.mboka-employee-notice[data-text="large"] .mboka-employee-notice-copy{font-size:15px !important;}
.mboka-customer-bulletin[data-text="formal"] .mboka-customer-bulletin-title,
.mboka-employee-notice[data-text="formal"] .mboka-employee-notice-line{
  letter-spacing:.01em !important;
  font-weight:850 !important;
}
.mboka-customer-bulletin[data-text="soft"] .mboka-customer-bulletin-title,
.mboka-customer-bulletin[data-text="soft"] .mboka-customer-bulletin-message,
.mboka-employee-notice[data-text="soft"] .mboka-employee-notice-line,
.mboka-employee-notice[data-text="soft"] .mboka-employee-notice-copy{
  font-weight:750 !important;
  opacity:.92 !important;
}


/* v71 — Live announcement page inside New Announcement modal */
body.page-announcements .ann-modal-panel-v71{
  width:min(1380px, calc(100vw - 32px)) !important;
  max-height:min(930px, calc(100dvh - 32px)) !important;
}
body.page-announcements .ann-modal-workspace-v71{
  position:relative !important;
  z-index:1 !important;
  display:grid !important;
  grid-template-columns:minmax(500px, 0.92fr) minmax(420px, 1.08fr) !important;
  gap:16px !important;
  width:100% !important;
  max-height:inherit !important;
  min-height:0 !important;
}
body.page-announcements .ann-modal-workspace-v71 > .ann-card{
  min-height:0 !important;
  max-height:inherit !important;
}
body.page-announcements .ann-modal-workspace-v71 .ann-form-card{
  display:flex !important;
  flex-direction:column !important;
}
body.page-announcements .ann-modal-preview-card-v71{
  display:flex !important;
  flex-direction:column !important;
  border-color:rgba(96,165,250,.24) !important;
  background:linear-gradient(180deg, rgba(10,20,40,.96), rgba(7,13,26,.98)) !important;
  box-shadow:0 28px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06) !important;
}
body.page-announcements .ann-modal-preview-card-v71 > .ann-card-hd{
  flex:0 0 auto !important;
  padding:16px 18px !important;
}
body.page-announcements .ann-modal-preview-card-v71 > .ann-card-hd h3{
  font-size:24px !important;
  line-height:1.1 !important;
}
body.page-announcements .ann-modal-preview-body-v71{
  flex:1 1 auto !important;
  min-height:0 !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  padding:18px !important;
  display:grid !important;
  gap:14px !important;
  align-content:start !important;
  scrollbar-gutter:stable !important;
}
body.page-announcements .ann-modal-preview-frame-v71{
  border-color:rgba(96,165,250,.22) !important;
  background:rgba(2,6,23,.28) !important;
}
body.page-announcements #annModalCustomerPreview,
body.page-announcements #annModalEmployeePreview{
  width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin{
  width:100% !important;
  max-width:100% !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-main{
  grid-template-columns:minmax(118px, 20%) minmax(0,1fr) minmax(118px, 20%) !important;
  min-height:96px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-label{
  min-height:96px !important;
  padding:12px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-icon{
  width:48px !important;
  height:48px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-title{
  font-size:clamp(20px, 1.9vw, 30px) !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-message{
  font-size:clamp(13px, 1.05vw, 17px) !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-meta{
  padding:12px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-priority,
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-date{
  font-size:12px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-ticker{
  min-height:46px !important;
  padding:7px 14px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-ticker-track span{
  font-size:13px !important;
}
body.page-announcements .ann-next-page-v71{
  border:1px solid rgba(34,197,94,.24) !important;
  border-radius:18px !important;
  background:linear-gradient(135deg, rgba(5,34,30,.76), rgba(8,19,38,.88)) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05), 0 16px 34px rgba(0,0,0,.20) !important;
  overflow:hidden !important;
}
body.page-announcements .ann-next-page-head-v71{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:12px !important;
  padding:15px 16px !important;
  border-bottom:1px solid rgba(34,197,94,.18) !important;
}
body.page-announcements .ann-next-page-head-v71 strong{
  color:#ecfdf5 !important;
  font-size:18px !important;
  line-height:1.15 !important;
  font-weight:950 !important;
}
body.page-announcements .ann-next-page-head-v71 span{
  color:#a7f3d0 !important;
  font-size:12px !important;
  font-weight:850 !important;
  text-align:right !important;
}
body.page-announcements .ann-review-grid-v71{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  gap:10px !important;
  padding:14px 16px !important;
}
body.page-announcements .ann-review-grid-v71 div{
  padding:11px 12px !important;
  border:1px solid rgba(148,163,184,.16) !important;
  border-radius:14px !important;
  background:rgba(2,6,23,.28) !important;
}
body.page-announcements .ann-review-grid-v71 span{
  display:block !important;
  color:#9fb3d9 !important;
  font-size:11px !important;
  font-weight:850 !important;
  text-transform:uppercase !important;
  letter-spacing:.04em !important;
}
body.page-announcements .ann-review-grid-v71 strong{
  display:block !important;
  margin-top:4px !important;
  color:#f8fbff !important;
  font-size:13px !important;
  font-weight:950 !important;
  text-transform:capitalize !important;
}
body.page-announcements .ann-next-actions-v71{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
  padding:0 16px 16px !important;
}
body.page-announcements .ann-next-actions-v71 .btn{
  min-height:42px !important;
}
@media (max-width:1100px){
  body.page-announcements .ann-modal-workspace-v71{
    grid-template-columns:1fr !important;
  }
  body.page-announcements .ann-modal-preview-card-v71{
    min-height:520px !important;
  }
}
@media (max-width:700px){
  body.page-announcements .ann-review-grid-v71{
    grid-template-columns:1fr !important;
  }
  body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-main{
    grid-template-columns:1fr !important;
  }
  body.page-announcements .ann-next-page-head-v71,
  body.page-announcements .ann-next-actions-v71{
    flex-direction:column !important;
    align-items:stretch !important;
  }
}

/* v72 — fix modal public banner overlap and add custom color controls */
body.page-announcements .ann-custom-color-picker{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;
  min-height:64px !important;
  padding:11px !important;
  border:1px solid rgba(148,163,184,.22) !important;
  border-radius:15px !important;
  background:rgba(255,255,255,.03) !important;
  color:#dbeafe !important;
  font-size:12px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}
body.page-announcements .ann-custom-color-picker input{
  width:42px !important;
  height:34px !important;
  border:0 !important;
  padding:0 !important;
  border-radius:10px !important;
  background:transparent !important;
  cursor:pointer !important;
}
body.page-announcements .ann-color-dot.custom{
  background:conic-gradient(from 90deg, #ef4444, #f97316, #eab308, #22c55e, #2563eb, #8b5cf6, #ef4444) !important;
}
@media (min-width:761px){
  body.page-announcements .ann-color-style-grid{ grid-template-columns:repeat(4, minmax(0,1fr)) !important; }
  body.page-announcements .ann-custom-color-picker{ grid-column:span 2 !important; }
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-main,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{
  grid-template-columns:minmax(118px, 150px) minmax(0, 1fr) minmax(118px, 150px) !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-label,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label{
  min-width:0 !important;
  width:100% !important;
  overflow:hidden !important;
  padding:10px 12px !important;
  gap:8px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-label strong,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label strong{
  min-width:0 !important;
  max-width:72px !important;
  font-size:13px !important;
  line-height:.98 !important;
  letter-spacing:.02em !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  word-break:normal !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-icon,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon{
  flex:0 0 42px !important;
  width:42px !important;
  height:42px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-icon .mboka-announcement-emoji,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-icon .mboka-announcement-emoji{
  font-size:28px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-copy,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-copy{
  min-width:0 !important;
  overflow:hidden !important;
  padding:12px 16px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-title,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-title{
  min-width:0 !important;
  max-width:100% !important;
  font-size:clamp(18px, 1.6vw, 26px) !important;
  line-height:1.05 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-message,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-message{
  min-width:0 !important;
  max-width:100% !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-meta,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-meta{
  min-width:0 !important;
  overflow:hidden !important;
  padding:10px 12px !important;
}
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-priority,
body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-date,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-priority,
body.page-announcements #annCustomerPreview .mboka-customer-bulletin-date{
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
@media (max-width:760px){
  body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-main,
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-main{ grid-template-columns:1fr !important; }
  body.page-announcements #annModalCustomerPreview .mboka-customer-bulletin-label strong,
  body.page-announcements #annCustomerPreview .mboka-customer-bulletin-label strong{ max-width:none !important; }
}
