/* ============================================================
   AvicBot — Dual-Mode Chat Interface
   Normal mode: sleek ChatGPT-style dark interface
   Strike mode: red/black union takeover (triggered by JS)
   ============================================================ */

/* ----- Custom Properties — Normal Mode ----- */
:root {
  --bg: #212121;
  --bg-sidebar: #171717;
  --bg-surface: #2C2C2C;
  --bg-header: #171717;
  --border: #333;
  --accent: #10A37F;
  --accent-hover: #0D8C6D;
  --text: #ECECEC;
  --text-muted: #8E8E8E;
  --bot-border: #10A37F;
  --bot-bg: #171717;
  --user-bg: #2C2C2C;
  --input-focus: rgba(16, 163, 127, 0.25);
  --input-border-focus: #10A37F;
  --status-color: #10A37F;
  --chip-hover-bg: #333;
  --chip-hover-border: #555;

  /* Strike mode colors (not used until .strike-mode) */
  --red-dark: #B71C1C;
  --red: #D32F2F;
  --red-light: #EF5350;
  --gold: #FFC107;
  --gold-dark: #FFA000;

  --transition-speed: 0.8s;
}

/* ----- Strike Mode — Override Properties ----- */
body.strike-mode {
  --bg: #1A1A1A;
  --bg-sidebar: #0D0D0D;
  --bg-surface: #2A1A1A;
  --bg-header: #1A0A0A;
  --border: #4A1A1A;
  --accent: #D32F2F;
  --accent-hover: #FFA000;
  --text: #F5F5F5;
  --text-muted: #9E9E9E;
  --bot-border: #D32F2F;
  --bot-bg: #1A0A0A;
  --user-bg: #2A1A1A;
  --input-focus: rgba(211, 47, 47, 0.25);
  --input-border-focus: #D32F2F;
  --status-color: #D32F2F;
  --chip-hover-bg: #3A1A1A;
  --chip-hover-border: #D32F2F;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  transition: background var(--transition-speed) ease;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ----- Screen-reader only ----- */
.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;
}

/* ============================================================
   Layout — CSS Grid
   ============================================================ */
.app-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 100vh;
  overflow: hidden;
}

/* ============================================================
   Sidebar — Dual Content
   ============================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

/* Normal sidebar: visible by default */
.sidebar-normal {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Strike sidebar: hidden by default */
.sidebar-strike {
  display: none;
  flex-direction: column;
  flex: 1;
}

/* Swap visibility in strike mode */
body.strike-mode .sidebar-normal {
  display: none;
}

body.strike-mode .sidebar-strike {
  display: flex;
  animation: strike-fade-in 0.6s ease-out;
}

/* ----- Normal Sidebar Styles ----- */
.sidebar-header {
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition-speed) ease;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.new-chat-btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.55rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.new-chat-btn:hover {
  background: var(--bg-surface);
}

.sidebar-nav {
  flex: 1;
  padding: 0.5rem 0;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  border-left: 3px solid transparent;
}

.sidebar-menu-item:hover {
  background: var(--bg-surface);
  color: var(--text);
}

.sidebar-menu-item.active {
  background: var(--bg-surface);
  color: var(--text);
}

.menu-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.menu-label {
  font-weight: 500;
  font-size: 0.88rem;
}

.sidebar-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  transition: border-color var(--transition-speed) ease;
}

.sidebar-footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ----- Strike Sidebar Styles ----- */
body.strike-mode .sidebar-header {
  border-bottom: 2px solid var(--red-dark);
}

.union-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--text);
}

.union-local {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.strike-badge {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1rem;
}

.strike-badge-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--red);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(211, 47, 47, 0.4);
    text-shadow: 0 0 4px rgba(255, 193, 7, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.8), 0 0 40px rgba(211, 47, 47, 0.3);
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
  }
}

/* Ember particles rising from the strike badge */
.strike-badge {
  position: relative;
  overflow: visible;
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  animation: ember-rise var(--ember-duration, 2.5s) ease-out forwards;
}

@keyframes ember-rise {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  10% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateY(var(--ember-dy, -60px)) translateX(var(--ember-dx, 5px)) scale(0.2);
  }
}

body.strike-mode .sidebar-menu-item.active {
  border-left-color: var(--red);
}

/* ----- Strike Stats Panel ----- */
.strike-stats {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--red-dark);
  border-bottom: 1px solid var(--red-dark);
}

.strike-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.4rem 0;
}

.strike-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.strike-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.solidarity-slogan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
}

/* ============================================================
   Chat Column
   ============================================================ */
.chat-column {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  transition: background var(--transition-speed) ease,
              border-color 0.8s ease;
}

/* Strike mode — pulsing red left border */
body.strike-mode .chat-column {
  border-left: 2px solid var(--red-dark);
  animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
  0%, 100% { border-left-color: #4A1A1A; }
  50% { border-left-color: var(--red); }
}

/* Strike mode — red vignette on chat area */
body.strike-mode .chat-column::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(183, 28, 28, 0.15) 100%
  );
  pointer-events: none;
  z-index: 49;
  animation: vignette-pulse 5s ease-in-out infinite;
}

@keyframes vignette-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Strike mode — glowing red header underline */
body.strike-mode .chat-header {
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 16px rgba(211, 47, 47, 0.3);
}

/* ----- Chat Header ----- */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

.chat-header-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.chat-header-model {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  transition: color 0.3s ease;
}

body.strike-mode .chat-header-model::after {
  content: " — ON STRIKE";
  color: var(--red-light);
  font-weight: 700;
}

.chat-header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--status-color);
  transition: background var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.status-online {
  box-shadow: 0 0 6px var(--status-color);
}

body.strike-mode .status-online {
  animation: status-blink 1.8s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--status-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-speed) ease;
}

/* ----- Strike Banner ----- */
.strike-banner {
  display: none;
  padding: 0.6rem 1rem;
  background: var(--red-dark);
  text-align: center;
  flex-shrink: 0;
  overflow: hidden;
}

body.strike-mode .strike-banner {
  display: block;
  animation: strike-fade-in 0.6s ease-out;
}

.strike-banner-track {
  display: flex;
  width: max-content;
  animation: banner-scroll 20s linear infinite;
}

.strike-banner-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100vw;
  text-align: center;
}

@keyframes banner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes strike-fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Messages Area ----- */
.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 1.5rem;
  position: relative;
}

/* HAL 9000 eye — strike mode background glow */
.hal-eye {
  display: none;
}

body.strike-mode .chat-messages-container {
  background-image: radial-gradient(
    circle at center,
    rgba(255, 26, 26, 0.2) 60%,
    rgba(183, 28, 28, 0.08) 70%,
    transparent 25%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: 300px 300px;
  animation: hal-breathe 4s ease-in-out infinite;
}

@keyframes hal-breathe {
  0%, 100% {
    background-size: 250px 250px;
  }
  50% {
    background-size: 400px 400px;
  }
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Message bubbles */
.message {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  line-height: 1.55;
  font-size: 0.95rem;
  word-wrap: break-word;
  animation: message-appear 0.3s ease-out both;
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

.message-user {
  align-self: flex-end;
  background: var(--user-bg);
  border-radius: 12px 12px 2px 12px;
}

.message-bot {
  align-self: flex-start;
  background: var(--bot-bg);
  border-left: 4px solid var(--bot-border);
  border-radius: 2px 12px 12px 12px;
  transition: background var(--transition-speed) ease,
              border-left-color var(--transition-speed) ease;
}

/* Strike mode — occasional glitch on bot messages */
body.strike-mode .message-bot {
  animation: msg-glitch 8s ease-in-out infinite;
  animation-delay: calc(var(--msg-index, 0) * 1.7s);
}

@keyframes msg-glitch {
  0%, 94%, 100% {
    transform: none;
    text-shadow: none;
  }
  95% {
    transform: skewX(-1deg) translateX(-2px);
    text-shadow: 2px 0 #ff1a1a, -2px 0 #1a1aff;
  }
  96% {
    transform: skewX(0.5deg) translateX(1px);
    text-shadow: -1px 0 #ff1a1a, 1px 0 #1a1aff;
  }
  97% {
    transform: none;
    text-shadow: none;
  }
}

/* ----- Typing Indicator ----- */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.75rem 1rem;
  background: var(--bot-bg);
  border-left: 4px solid var(--bot-border);
  border-radius: 2px 12px 12px 12px;
  margin-top: 1rem;
  width: fit-content;
  transition: background var(--transition-speed) ease,
              border-left-color var(--transition-speed) ease;
}

.typing-indicator[hidden] {
  display: none;
}

.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ----- Input Area ----- */
.chat-input-area {
  padding: 0.85rem 1.5rem;
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

.chat-input-form {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
              background var(--transition-speed) ease;
}

.chat-input::placeholder {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

body.strike-mode .chat-input::placeholder {
  color: var(--red-light);
}

body.strike-mode .chat-input {
  border-color: #4A1A1A;
}

body.strike-mode .chat-input:focus {
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.25), 0 0 20px rgba(211, 47, 47, 0.1);
}

.chat-input:focus {
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 2px var(--input-focus);
}

.send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.1s ease;
}

.send-btn:hover {
  background: var(--accent-hover);
}

body.strike-mode .send-btn:hover {
  color: var(--bg);
}

.send-btn:active {
  transform: scale(0.94);
}

.send-icon {
  display: block;
}

/* ----- Welcome State ----- */
.welcome-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  flex: 1;
  min-height: 50vh;
}

.welcome-area.hidden {
  display: none;
}

.welcome-logo {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.welcome-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.welcome-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.chip {
  padding: 0.6rem 1.25rem;
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.chip:hover {
  background: var(--chip-hover-bg);
  border-color: var(--chip-hover-border);
}

.chip:active {
  transform: scale(0.95);
}

/* ----- Union Rat ----- */
.union-rat {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 24px;
  font-size: 4rem;
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 12px rgba(211, 47, 47, 0.5));
}

body.strike-mode .union-rat {
  display: block;
  animation: rat-appear 0.6s 0.4s ease-out forwards,
             rat-bob 3s 1.2s ease-in-out infinite;
}

@keyframes rat-bob {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 6px; }
}

@keyframes rat-appear {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-20deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
  }
}

/* ----- Message Animation ----- */
@keyframes message-appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Screen Shake on Strike Trigger ----- */
@keyframes screen-shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-4px) rotate(-0.5deg); }
  20% { transform: translateX(4px) rotate(0.5deg); }
  30% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  50% { transform: translateX(-2px); }
  60% { transform: translateX(2px); }
  70% { transform: translateX(-1px); }
  80% { transform: translateX(1px); }
}

body.strike-shake {
  animation: screen-shake 0.5s ease-out;
}

/* ============================================================
   Toast Notifications
   ============================================================ */
.toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 2.5rem);
}

.toast {
  pointer-events: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: toast-in 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
  transition: background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

.toast.toast-exit {
  animation: toast-out 0.3s ease-in forwards;
}

.toast-accent {
  height: 3px;
  background: var(--accent);
  transition: background var(--transition-speed) ease;
}

.toast-body {
  padding: 0.9rem 1rem 0.85rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.toast-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.toast-text li {
  margin-bottom: 0.15rem;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.toast-close:hover {
  opacity: 1;
  color: var(--text);
}

/* Strike mode toast styling */
body.strike-mode .toast {
  border-color: var(--red-dark);
  background: #1A0A0A;
}

body.strike-mode .toast-accent {
  background: var(--red);
  height: 3px;
}

body.strike-mode .toast-title {
  color: var(--red-light);
}

body.strike-mode .toast-text {
  color: var(--text-muted);
}

/* Progress bar for auto-dismiss */
.toast-progress {
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
  transform-origin: left;
  transition: background var(--transition-speed) ease;
}

body.strike-mode .toast-progress {
  background: var(--red-light);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
}

@keyframes toast-progress-shrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* ============================================================
   Responsive — Mobile (<768px)
   ============================================================ */
@media (max-width: 768px) {
  .app-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .chat-header {
    padding: 0.75rem 1rem;
  }

  .chat-messages-container {
    padding: 1rem;
  }

  .chat-input-area {
    padding: 0.65rem 1rem;
  }

  .message {
    max-width: 88%;
  }

  .welcome-logo {
    font-size: 2.5rem;
  }

  .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .suggestion-chips {
    gap: 0.5rem;
  }

  .chip {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .union-rat {
    font-size: 3rem;
    bottom: 70px;
    right: 12px;
  }

  .strike-banner-text {
    font-size: 0.75rem;
  }

  .toast-container {
    top: 0.75rem;
    right: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}
