/* Jobbkalendern Classic – Live poll UI */

.jk-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1;
  background: #e11d48; /* rose-600-ish */
  color:#fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  vertical-align:middle;
}

.jk-toast-host{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}

.jk-toast{
  pointer-events:none;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .95); /* slate-900 */
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transform: translateY(10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  font-size: 14px;
}

.jk-toast strong{
  font-weight: 800;
}

.jk-toast.is-in{
  transform: translateY(0);
  opacity: 1;
}

.jk-toast.is-out{
  transform: translateY(10px);
  opacity: 0;
}
