:root {
  --bg: #f3f6fb;
  --panel: #ffffff;
  --panel-alt: #eef4ff;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.12);
  --text: #172033;
  --text-soft: #5f6f8e;
  --muted: #8aa0c1;
  --border: #e6ebf5;
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

#app-shell {
  display: flex;
  width: 100%;
  max-width: 1300px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 24px 18px calc(80px + env(safe-area-inset-bottom));
  gap: 18px;
}

.sidebar {
  width: 250px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  height: fit-content;
  position: sticky;
  top: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.brand-mark,
.auth-brandmark,
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: white;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--text-soft);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-item,
.bottom-nav-item {
  border: none;
  background: transparent;
  color: var(--text-soft);
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-item.active,
.bottom-nav-item.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.main-panel {
  flex: 1;
  min-width: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}

.topbar > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin-top: 0;
}

.user-pill {
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-soft);
  box-shadow: var(--shadow);
}

.view-panel {
  width: 100%;
}

.loading-card {
  max-width: 420px;
  margin: 80px auto 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  text-align: center;
}

.spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  border: 4px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-card,
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-card {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 26px 20px 22px;
}

.auth-header {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auth-header > div:last-child {
  min-width: 0;
}

.auth-brandmark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 1.2rem;
}

.auth-header p {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--bg);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 4px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.tab-btn.active {
  background: var(--panel);
  color: var(--primary);
  box-shadow: 0 5px 14px rgba(37, 99, 235, 0.08);
}

.auth-form,
.activity-form {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

input.field-invalid,
select.field-invalid,
textarea.field-invalid,
.work-code-options.field-invalid {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.primary-btn,
.secondary-btn,
.danger-btn,
.text-button {
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.danger-btn:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.secondary-btn {
  background: #edf3ff;
  color: var(--primary);
}

.danger-btn {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
}

.text-button {
  background: transparent;
  color: var(--primary);
  padding: 0;
  margin-top: 12px;
}

.full-width {
  width: 100%;
}

.quick-actions {
  width: 100%;
  max-width: 100%;
  min-height: clamp(300px, calc(100dvh - 250px), 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.start-activity-fab {
  width: 64px;
  height: 64px;
  min-width: 64px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-activity-fab.is-active-layout {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
}

.quick-actions.is-active {
  min-height: 0;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.quick-actions.is-active .start-activity-label {
  display: none;
}

.start-activity-icon,
.start-activity-button-text {
  display: inline-block;
}

.start-activity-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.start-activity-fab:active {
  transform: scale(0.94);
}

.start-activity-fab:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 4px;
}

.start-activity-label {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.empty-state {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-soft);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

#active-activity-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 20px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 700;
}

.status-badge.ongoing {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.status-badge.completed {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
}

.status-badge.cancelled {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.timer {
  color: var(--primary);
  font-weight: 700;
}

.field-grid {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-code-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.work-code-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-code-option {
  border: 1px solid var(--border);
  background: #f8fbff;
  color: var(--text-soft);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 52px;
  min-height: 36px;
  transition: all 0.2s ease;
}

.work-code-option.active {
  background: var(--primary-soft);
  border-color: rgba(37, 99, 235, 0.4);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-actions {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.form-actions > .primary-btn {
  justify-self: start;
}

.form-actions > .danger-btn {
  justify-self: end;
}

.cancel-activity-control {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: clamp(84px, 10vw, 104px);
  margin: 28px auto 4px;
  animation: cancel-control-enter 200ms ease both;
}

.cancel-activity-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.14);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cancel-activity-btn:hover {
  background: rgba(239, 68, 68, 0.18);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.2);
  transform: translateY(-1px);
}

.cancel-activity-btn:active {
  transform: scale(0.92);
}

.cancel-activity-btn:focus-visible {
  outline: 3px solid rgba(239, 68, 68, 0.25);
  outline-offset: 3px;
}

.cancel-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.cancel-activity-label {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes cancel-control-enter {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.toolbar {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  margin-bottom: 20px;
}

.toolbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.toolbar-title {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.history-filter-toggle {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  color: var(--text-soft);
  font-size: 1.45rem;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.history-filter-toggle:hover,
.history-filter-toggle:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
}

.history-filter-toggle:active {
  transform: scale(0.94);
}

.filter-active-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--danger);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.history-filter-toggle.has-active-filter .filter-active-indicator {
  opacity: 1;
  transform: scale(1);
}

.history-filter-panel {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  animation: filter-panel-enter 180ms ease both;
}

.history-filter-panel[hidden] {
  display: none;
}

.filter-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.filter-panel-actions button {
  min-height: 44px;
}

@keyframes filter-panel-enter {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toolbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.swipe-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  touch-action: pan-y;
  min-height: 1px;
}

.swipe-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 1;
  margin: 0;
  transition: transform 240ms cubic-bezier(0.22, 0.8, 0.25, 1);
  will-change: transform;
}

.swipe-delete-action {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 0;
  width: var(--blob-width, 34px);
  height: var(--blob-height, 36px);
  border: 0;
  border-radius: var(--blob-radius, 48% 52% 58% 42%);
  background: #dc2626;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  opacity: var(--blob-progress, 0);
  pointer-events: none;
  transform: translateY(-50%) scale(var(--blob-scale, 0.78));
  transform-origin: center;
  transition:
    width 180ms ease,
    height 180ms ease,
    border-radius 220ms ease,
    opacity 160ms ease,
    transform 220ms cubic-bezier(0.22, 0.8, 0.25, 1),
    box-shadow 220ms ease;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.18);
}

.swipe-item.is-dragging .swipe-delete-action {
  transition: none;
}

.swipe-item.is-dragging .trash-icon {
  transition: none;
}

.swipe-item.is-ready .swipe-delete-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.34);
}

.trash-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  opacity: var(--icon-opacity, 0);
  transform: scale(var(--icon-scale, 0.5));
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

.swipe-delete-action:hover,
.swipe-delete-action:focus-visible {
  background: #b91c1c;
}

.swipe-item.is-ready .swipe-delete-action:active {
  transform: translateY(-50%) scale(0.94);
}

.swipe-item.is-settling .swipe-delete-action {
  animation: liquid-settle 460ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

@keyframes liquid-settle {
  0% { transform: translateY(-50%) scale(0.86); }
  42% { transform: translateY(-50%) scale(1.06); }
  72% { transform: translateY(-50%) scale(0.98); }
  100% { transform: translateY(-50%) scale(1); }
}

.feed-card {
  padding: 18px;
}

.feed-header {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.feed-header h3 {
  overflow-wrap: anywhere;
  margin-bottom: 4px;
}

.feed-header > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.feed-header p {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.work-badge {
  flex: 0 1 auto;
  max-width: 42%;
  overflow-wrap: anywhere;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  color: white;
  min-width: 52px;
}

.work-badge.hw { background: #3b82f6; }
.work-badge.sw { background: #8b5cf6; }
.work-badge.kb { background: #10b981; }
.work-badge.ot { background: #f59e0b; }
.work-badge.nw { background: #06b6d4; }
.work-badge.mv { background: #ef4444; }
.work-badge.dr { background: #64748b; }

.meta-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.meta-grid strong {
  color: var(--text);
}

.remarks {
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.profile-card {
  max-width: 500px;
  text-align: center;
  padding: 24px 20px;
  margin: 42px auto 0;
}

.profile-label {
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.profile-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
}

.profile-card #profile-name {
  min-width: 0;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.edit-name-button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  color: var(--primary);
  transition: background-color 180ms ease, transform 180ms ease;
}

.edit-name-button:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.edit-name-button:active {
  transform: scale(0.94);
}

.edit-name-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 2px;
}

.edit-name-icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

#profile-email {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  z-index: 40;
}

.modal-card {
  width: min(420px, 100%);
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  margin-bottom: 10px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(82px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: max-content;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  overflow-wrap: anywhere;
  background: rgba(23, 32, 51, 0.95);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 80;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 600;
}

.toast.success { background: rgba(16, 185, 129, 0.95); }
.toast.error { background: rgba(239, 68, 68, 0.95); }
.toast.warning { background: rgba(245, 158, 11, 0.95); }

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  z-index: 30;
}

.bottom-nav-item {
  text-align: center;
  padding: 14px 8px;
}

@media (max-width: 900px) {
  #app-shell {
    padding-top: 14px;
  }

  .sidebar {
    display: none;
  }

  .bottom-nav {
    display: grid;
  }

  .two-column,
  .toolbar-grid,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .work-code-option {
    flex: 1 1 calc(25% - 8px);
    min-width: 0;
  }

  .form-actions {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .form-actions > .primary-btn,
  .form-actions > .danger-btn {
    width: 100%;
    justify-self: stretch;
  }

}

@media (max-width: 480px) {
  #app-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .topbar {
    align-items: flex-start;
    gap: 8px;
  }

  .topbar h1 {
    font-size: 1.35rem;
  }

  .user-pill {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .auth-card,
  #active-activity-card,
  .toolbar,
  .feed-card {
    border-radius: 14px;
    padding: 16px;
  }

  .status-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions > button {
    min-height: 44px;
  }
    width: 100%;
    min-height: 44px;
  }

  .cancel-activity-control {
    margin-top: 24px;
  }
}

@media (max-width: 375px) {
  #app-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar {
    flex-direction: column;
  }

  .user-pill {
    align-self: flex-start;
    max-width: 100%;
  }

  .loading-card,
  .auth-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feed-header {
    gap: 8px;
  }

  .work-badge {
    max-width: 36%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .toast {
    min-width: 0;
  }
}
