:root {
  /* Dark gold for text/icons/borders — the vivid tile yellow fails contrast
     as foreground text, so accents that sit on a plain background use this
     instead and save the flat yellow for solid fills. */
  --yu-brand: #96730a;
  --yu-brand-soft: #f5df1e;
  /* Pressed state for the solid yellow button. Deeper in light, brighter in
     dark, so hover reads as a lift in both. */
  --yu-brand-hover: #e7d015;
  /* Foreground for anything sitting on a yellow fill. Deliberately the same
     in both themes: the fill is yellow either way, so the text on it must be
     near-black either way. */
  --yu-ink: #171400;
  --yu-danger: #c0392b;
  --yu-bg: #ffffff;
  --yu-surface: #fafafa;
  --yu-surface-hover: #fffbe8;
  --yu-border: #ececec;
  --yu-border-strong: #dcdcdc;
  --yu-text: #1c1c1e;
  --yu-text-muted: #6b6b70;
  --yu-text-faint: #9a9aa0;
  --yu-track: #d4d4d8;
  --yu-radius: 14px;
  --yu-pad: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --yu-brand: #f5df1e;
    --yu-brand-soft: #d9c400;
    --yu-brand-hover: #f0dc10;
    --yu-danger: #f08074;
    --yu-bg: #17171a;
    --yu-surface: #202024;
    --yu-surface-hover: #26241a;
    --yu-border: #2e2e34;
    --yu-border-strong: #3d3d45;
    --yu-text: #f2f2f4;
    --yu-text-muted: #a2a2aa;
    --yu-text-faint: #7c7c85;
    --yu-track: #4a4a52;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--yu-bg);
  color: var(--yu-text);
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Tabs ---------- */

.yu-tablist {
  flex: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  /* The panel sits flush under the browser's own chrome, so without this the
     tabs read as part of it rather than as the start of the extension. */
  margin: 12px var(--yu-pad) 0;
  padding: 4px;
  background: var(--yu-surface);
  border: 1px solid var(--yu-border);
  border-radius: 12px;
}

.yu-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px 8px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--yu-text-muted);
  font: inherit;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.yu-tab:hover {
  background: var(--yu-surface-hover);
  color: var(--yu-text);
}

.yu-tab:focus-visible {
  outline: 2px solid var(--yu-brand);
  outline-offset: -1px;
}

.yu-tab-active,
.yu-tab-active:hover {
  background: var(--yu-bg);
  color: var(--yu-text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.yu-tab-icon {
  font-size: 17px;
  line-height: 1;
}

.yu-tab-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  /* "Study Party" is longer than the other two; keep it on one line and let
     it shrink rather than wrap the tab to a second row. */
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yu-mode-summary {
  flex: none;
  margin: 10px var(--yu-pad) 0;
  font-size: 12px;
  color: var(--yu-text-muted);
}

/* ---------- Panel ---------- */

.yu-panel {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px var(--yu-pad) var(--yu-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yu-panel:focus-visible {
  outline: none;
}

.yu-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.yu-section-heading {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--yu-text-faint);
}

.yu-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--yu-text-muted);
}

.yu-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--yu-text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yu-list li::marker {
  color: var(--yu-brand);
}

/* ---------- Metrics ---------- */

.yu-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.yu-metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 10px;
  border: 1px solid var(--yu-border);
  border-radius: var(--yu-radius);
  background: var(--yu-surface);
}

.yu-metric-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--yu-brand);
  letter-spacing: -0.5px;
}

.yu-metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--yu-text-muted);
}

/* ---------- Settings ---------- */

.yu-settings-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--yu-border);
  border-radius: var(--yu-radius);
  overflow: hidden;
}

.yu-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  background: var(--yu-surface);
}

.yu-setting-item + .yu-setting-item {
  border-top: 1px solid var(--yu-border);
}

.yu-setting-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.yu-setting-title {
  font-size: 13px;
  font-weight: 600;
}

.yu-setting-desc {
  font-size: 11.5px;
  color: var(--yu-text-muted);
}

/* ---------- Switch ---------- */

.yu-switch {
  position: relative;
  flex: none;
  width: 42px;
  height: 24px;
}

.yu-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.yu-slider {
  position: absolute;
  inset: 0;
  background: var(--yu-track);
  border-radius: 999px;
  transition: background 0.22s ease;
  pointer-events: none;
}

.yu-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.yu-switch input:checked + .yu-slider {
  background: var(--yu-brand);
}

.yu-switch input:checked + .yu-slider::before {
  transform: translateX(18px);
}

.yu-switch input:focus-visible + .yu-slider {
  outline: 2px solid var(--yu-brand);
  outline-offset: 2px;
}

/* ---------- Footer ---------- */

.yu-footer {
  flex: none;
  padding: 11px var(--yu-pad);
  border-top: 1px solid var(--yu-border);
  font-size: 10.5px;
  text-align: center;
  color: var(--yu-text-faint);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ================================================================
   Party mode
   ================================================================ */

/* The party fills the panel and manages its own scrolling, because the chat
   log needs to scroll independently of the member list and composer. */
.yu-section-party {
  flex: 1;
  min-height: 0;
  gap: 10px;
}

/* ---------- Lobby ---------- */

.yu-party-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 22px 14px 6px;
}

.yu-party-glyph { font-size: 30px; line-height: 1; }

.yu-party-title {
  margin: 4px 0 0;
  font-size: 15.5px;
  font-weight: 700;
}

.yu-party-desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--yu-text-muted);
  max-width: 32ch;
  line-height: 1.45;
}

/*
 * Shown instead of the mode body when the panel is open beside something that
 * is not YouTube. It is the whole panel at that point, not a banner over
 * content, so it is laid out as an empty state rather than a strip.
 */
.yu-offsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 18px 6px;
}

.yu-offsite-glyph {
  font-size: 30px;
  line-height: 1;
}

.yu-offsite-title {
  margin: 6px 0 0;
  font-size: 15.5px;
  font-weight: 700;
}

.yu-offsite-desc {
  margin: 0 0 6px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--yu-text-muted);
  max-width: 32ch;
}

/* The quieter half of the pitch: true, worth saying, not the headline. */
.yu-party-note {
  margin: 8px 0 0;
  font-size: 11.5px;
  color: var(--yu-text-faint);
  max-width: 32ch;
  line-height: 1.4;
}

.yu-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.yu-btn {
  padding: 10px 14px;
  border: 2px solid var(--yu-text);
  border-radius: 10px;
  background: var(--yu-bg);
  color: var(--yu-text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.yu-btn:hover:not(:disabled) { background: var(--yu-surface-hover); }
.yu-btn:focus-visible { outline: 2px solid var(--yu-brand); outline-offset: 2px; }
.yu-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.yu-btn-primary {
  background: var(--yu-brand-soft);
  border-color: var(--yu-ink);
  color: var(--yu-ink);
}

/*
 * Sets its own background rather than leaning on a filter.
 *
 * .yu-btn:hover assigns --yu-surface-hover and this rule has the same
 * specificity, so a filter-only hover left that background in place: in dark
 * mode the gold fill became dark olive while the text stayed near-black, at
 * roughly 1.1:1. Naming the background here is what keeps the pair together.
 */
.yu-btn-primary:hover:not(:disabled) {
  background: var(--yu-brand-hover);
  border-color: var(--yu-ink);
  color: var(--yu-ink);
}

.yu-or {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--yu-text-faint);
  margin: 4px 0;
}

.yu-or::before,
.yu-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--yu-border);
}

.yu-join-row { display: flex; gap: 7px; }

.yu-input {
  flex: 1;
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid var(--yu-border-strong);
  border-radius: 10px;
  background: var(--yu-bg);
  color: var(--yu-text);
  font: inherit;
  font-size: 13px;
}

.yu-input::placeholder { color: var(--yu-text-faint); }
.yu-input:focus-visible { outline: 2px solid var(--yu-brand); outline-offset: -1px; border-color: var(--yu-brand); }

.yu-code-input {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.yu-error {
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--yu-surface-hover);
  border: 1px solid var(--yu-brand);
  font-size: 12px;
  color: var(--yu-text);
}

/* ---------- Room bar ---------- */

.yu-room-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--yu-border);
  border-radius: 10px;
  background: var(--yu-surface);
}

.yu-room-info { display: flex; align-items: center; gap: 8px; min-width: 0; }

.yu-room-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--yu-text-muted);
  white-space: nowrap;
}

.yu-room-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yu-text-faint);
}

.yu-room-status[data-state="connected"] { color: var(--yu-text); }
.yu-room-status[data-state="connected"]::before {
  background: var(--yu-brand-soft);
  animation: yu-blink 1.4s ease-in-out infinite;
}
.yu-room-status[data-state="reconnecting"]::before,
.yu-room-status[data-state="connecting"]::before { background: var(--yu-text-faint); }

@keyframes yu-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 223, 30, 0.55); }
  50% { opacity: 0.35; box-shadow: 0 0 0 4px rgba(245, 223, 30, 0); }
}

.yu-room-code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--yu-bg);
  border: 1px solid var(--yu-border);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* How long voice has left. Quiet until it matters, then not. */
.yu-voice-clock {
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid var(--yu-border);
  color: var(--yu-text-faint);
  white-space: nowrap;
}

.yu-voice-clock[data-level="warn"] {
  color: var(--yu-ink);
  background: var(--yu-brand-soft);
  border-color: var(--yu-ink);
}

.yu-voice-clock[data-level="urgent"] {
  color: var(--yu-danger);
  border-color: var(--yu-danger);
}

.yu-voice-clock[data-level="over"] { opacity: 0.7; }

.yu-room-actions { display: flex; gap: 5px; flex: none; }

.yu-icon-btn {
  padding: 5px 9px;
  border: 1px solid var(--yu-border-strong);
  border-radius: 7px;
  background: var(--yu-bg);
  color: var(--yu-text-muted);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.yu-icon-btn:hover { color: var(--yu-text); border-color: var(--yu-brand); }
.yu-icon-btn:focus-visible { outline: 2px solid var(--yu-brand); outline-offset: 1px; }
.yu-icon-btn-danger:hover { color: var(--yu-brand); }

/* ---------- Members ---------- */

/*
 * Seats wrap rather than sitting in a fixed pair of columns: a room's
 * capacity is set by the server and can differ between rooms, so the grid has
 * to lay out whatever it is handed. auto-fill with a minimum keeps three
 * across a wide panel and folds to two when the panel is narrow.
 */
.yu-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}

.yu-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 11px 8px;
  border: 1px solid var(--yu-border);
  border-radius: 12px;
  background: var(--yu-surface);
}

.yu-avatar-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: visible;
}

.yu-avatar {
  display: block;
  border-radius: 10px;
  /* Keeps the identicon's hard pixel edges crisp instead of blurring them. */
  image-rendering: pixelated;
}

/* A ring that only appears while this member is actually talking. */
.yu-member-speaking .yu-avatar-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 13px;
  border: 2px solid var(--yu-seed-color, var(--yu-brand));
}

.yu-muted-dot {
  position: absolute;
  right: -6px;
  bottom: -5px;
  font-size: 11px;
  line-height: 1;
  background: var(--yu-surface);
  border-radius: 50%;
  padding: 1px;
}

.yu-member-name {
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.yu-member-empty { border-style: dashed; }
.yu-member-empty .yu-member-name { color: var(--yu-text-faint); font-weight: 500; }

/*
 * Speaking indicator: a small equaliser sitting on the lower edge of the
 * avatar. The pill is a neutral surface and the bars carry the member's seed
 * colour, rather than the reverse — a seed colour is generated, so it cannot
 * be trusted to contrast with whatever is drawn on top of it.
 */
.yu-speaking-bars {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  height: 13px;
  padding: 0 4px;
  border-radius: 7px;
  background: var(--yu-bg);
  box-shadow: 0 0 0 1.5px var(--yu-seed-color, var(--yu-brand));
  /* The speaking ring is an ::after, which paints as the last child and
     would otherwise cover this. */
  z-index: 1;
}

.yu-speaking-bars span {
  display: block;
  width: 2px;
  height: 7px;
  border-radius: 1px;
  background: var(--yu-seed-color, var(--yu-brand));
  transform-origin: center;
  animation: yu-wave 900ms ease-in-out infinite;
}

/* Offset so the bars move against each other rather than in lockstep. */
.yu-speaking-bars span:nth-child(2) { animation-delay: 150ms; height: 10px; }
.yu-speaking-bars span:nth-child(3) { animation-delay: 300ms; height: 8px; }

/*
 * The trough never goes below half. At 2px wide, a bar scaled much smaller
 * than this stops reading as a bar and turns into a row of dots.
 */
@keyframes yu-wave {
  0%, 100% { transform: scaleY(.5); }
  50%      { transform: scaleY(1); }
}

/* Still legible as "talking" without the motion. */
@media (prefers-reduced-motion: reduce) {
  .yu-speaking-bars span {
    animation: none;
    transform: scaleY(.8);
  }
}

.yu-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Quick reactions: tapped often, so the targets stay generous. */
.yu-reactions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yu-reaction-bar {
  display: flex;
  gap: 6px;
}

.yu-reaction-btn {
  flex: 1;
  min-width: 0;
  padding: 7px 0;
  font-size: 18px;
  line-height: 1;
  border: 1px solid var(--yu-border);
  border-radius: 10px;
  background: var(--yu-surface);
  cursor: pointer;
}

.yu-reaction-btn:hover {
  background: var(--yu-surface-hover);
  border-color: var(--yu-border-strong);
}

/* Confirms the tap landed even though the emoji itself flies on the page. */
.yu-reaction-btn:active {
  transform: scale(.9);
}

.yu-reaction-btn:focus-visible {
  outline: 2px solid var(--yu-brand);
  outline-offset: 1px;
}

.yu-reaction-more {
  flex: 0 0 40px;
  font-size: 15px;
  font-weight: 700;
  color: var(--yu-text-muted);
}

.yu-reaction-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--yu-border);
  border-radius: 12px;
  background: var(--yu-bg);
}

.yu-reaction-grid .yu-reaction-btn {
  padding: 5px 0;
  font-size: 16px;
  border-color: transparent;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .yu-reaction-btn:active { transform: none; }
}

/* Host controls, shown on other people's cards only. */
.yu-member-controls {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}

.yu-mini-btn {
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid var(--yu-border-strong);
  background: var(--yu-bg);
  color: var(--yu-text-muted);
  cursor: pointer;
}

.yu-mini-btn:hover:not(:disabled) {
  background: var(--yu-surface-hover);
  color: var(--yu-text);
}

.yu-mini-btn:disabled { opacity: .4; cursor: default; }
.yu-mini-btn:focus-visible { outline: 2px solid var(--yu-brand); outline-offset: 1px; }
.yu-mini-btn-danger:hover:not(:disabled) { border-color: var(--yu-danger); color: var(--yu-danger); }

/* Lock is a toggle, so it has to look engaged when it is on. */
.yu-icon-btn-on {
  background: var(--yu-brand);
  border-color: var(--yu-brand);
  color: var(--yu-ink);
}

/* Not a seat and not a button — a note about where the room is going. */
.yu-member-soon {
  border-style: dashed;
  opacity: .65;
}
.yu-member-soon .yu-member-name { color: var(--yu-text-faint); font-weight: 500; }
.yu-member-soon .yu-avatar-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yu-text-faint);
  font-size: 17px;
  font-weight: 600;
}

.yu-avatar-empty {
  border: 1.5px dashed var(--yu-border-strong);
  border-radius: 10px;
}

/* ---------- Chat ---------- */

.yu-chat {
  flex: 1;
  min-height: 6rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 11px;
  border: 1px solid var(--yu-border);
  border-radius: 12px;
  background: var(--yu-surface);
}

.yu-chat-empty {
  margin: auto;
  font-size: 12px;
  color: var(--yu-text-faint);
}

.yu-msg { display: flex; gap: 8px; align-items: flex-start; }

.yu-msg-avatar { flex: none; border-radius: 6px; image-rendering: pixelated; }

.yu-msg-body { min-width: 0; flex: 1; }

.yu-msg-head { display: flex; align-items: baseline; gap: 6px; }

.yu-msg-name { font-size: 11.5px; font-weight: 700; }

.yu-msg-time {
  font-size: 10px;
  color: var(--yu-text-faint);
  font-variant-numeric: tabular-nums;
}

.yu-msg-text {
  margin: 1px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ---------- Composer ---------- */

.yu-composer { display: flex; gap: 7px; align-items: center; }

.yu-composer-form { flex: 1; display: flex; min-width: 0; }

.yu-mic-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--yu-border-strong);
  border-radius: 10px;
  background: var(--yu-bg);
  color: var(--yu-text-muted);
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.yu-mic-btn:hover:not(:disabled) { border-color: var(--yu-brand); }
.yu-mic-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.yu-mic-btn:focus-visible { outline: 2px solid var(--yu-brand); outline-offset: 2px; }

/* Filled while the microphone is open, so the state is obvious at a glance. */
.yu-mic-live {
  background: var(--yu-brand-soft);
  border-color: var(--yu-ink);
  color: var(--yu-ink);
}

/* ---------- Toast ---------- */

.yu-toast {
  position: fixed;
  left: 50%;
  bottom: 54px;
  transform: translate(-50%, 8px);
  padding: 7px 13px;
  border-radius: 100px;
  background: var(--yu-text);
  color: var(--yu-bg);
  font-size: 11.5px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
}

.yu-toast-on { opacity: 1; transform: translate(-50%, 0); }
