.capture-status {
  position: fixed;
  z-index: 1200;
  left: 50%;
  bottom: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  max-width: calc(100vw - 32px);
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(23, 21, 31, .94);
  color: #fff;
  box-shadow: 0 14px 38px rgba(23, 21, 31, .24);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  translate: -50% 0;
  backdrop-filter: blur(14px);
}

.capture-status[hidden],
.capture-status [hidden] {
  display: none;
}

.capture-status [data-screen-recording-stop] {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: #b4232e;
  font-size: 11px;
  font-weight: 750;
}

.capture-status [data-screen-recording-stop]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.capture-status[data-state="unsupported"] {
  background: rgba(66, 61, 78, .96);
}

.capture-status[data-state="recording"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .18);
  animation: capturePulse 1.2s infinite;
}

.dock-more [data-screen-recording][aria-pressed="true"] {
  color: #c52f38;
  background: #fff1f2;
}

@keyframes capturePulse {
  50% { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
  .capture-status[data-state="recording"]::before { animation: none; }
}

.smart-paste-hint {
  position: fixed;
  z-index: 1200;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(84px, calc(env(safe-area-inset-bottom) + 84px));
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(480px, calc(100vw - 32px));
  padding: 12px 14px;
  color: #f7f5ff;
  background: rgba(28, 25, 39, .96);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(12, 9, 24, .28);
  backdrop-filter: blur(18px);
}

.smart-paste-hint__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.smart-paste-hint__dismiss {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  color: #241b4f;
  background: #d8ceff;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.smart-paste-hint__dismiss:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .smart-paste-hint {
    left: 16px;
    right: 16px;
    align-items: flex-start;
  }
}
