.altcha-shell {
  position: relative;
}

.altcha-shell altcha-widget {
  display: block;
  width: 100%;
  --altcha-max-width: 100%;
  --altcha-border-radius: 8px;
  --altcha-color-primary: #4A6BFF;
  --altcha-color-primary-content: #ffffff;
}

.altcha-compact-status {
  display: none;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  color: #172033;
  font-size: 13px;
  line-height: 1.25;
}

.altcha-compact-status__icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.altcha-compact-status__title {
  min-width: 0;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.altcha-compact-status__meta {
  margin-left: auto;
  color: #718096;
  font-size: 10.5px;
  white-space: nowrap;
}

.altcha-shell.is-verified .altcha-compact-status {
  display: flex;
}

.altcha-shell.is-verified altcha-widget {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

@media (max-width: 420px) {
  .altcha-compact-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .altcha-compact-status__meta {
    width: calc(100% - 35px);
    margin: -5px 0 0 35px;
  }

  .altcha-compact-status__title {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .altcha-compact-status {
    animation: altcha-compact-reveal 180ms ease-out;
  }

  @keyframes altcha-compact-reveal {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
