@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.alp-create-alt-text {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 2rem;
  min-height: 2rem;
  padding: 0 0.75rem !important;
  margin: 0 0 0.5rem 0;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  background-color: #1250ED;
  color: #EAF2FF;
}
.alp-create-alt-text .alp-create-alt-text--icon,
.alp-create-alt-text .alp-create-alt-text--icon svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}
.alp-create-alt-text:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(100%);
}
.alp-create-alt-text:disabled .alp-create-alt-text--icon svg {
  animation: altpilot-scale 0.2s ease-in-out infinite alternate;
}
.alp-create-alt-text:hover, .alp-create-alt-text:focus {
  text-decoration: none;
  background-color: #1250ED;
  color: white;
}
.alp-create-alt-text:focus {
  outline: 2px solid #1250ED;
  outline-offset: 2px;
}

@keyframes altpilot-scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
.alp-error {
  color: #E53E3E;
  font-weight: 500;
}