:root {
  --voice-card-highlight: rgba(47, 130, 255, 0.12);
  --voice-card-highlight-border: rgba(90, 160, 255, 0.32);
}

.docs-logo-mark {
  font-size: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.docs-logo-mark::before {
  content: "V";
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #ffffff;
  z-index: 2;
}

.docs-logo-mark::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-left: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  right: 7px;
  top: 5px;
  opacity: 0.72;
}

.hero-mark {
  font-size: 0 !important;
  position: relative !important;
}

.hero-mark::before {
  content: "V";
  font-size: 1.45rem;
  font-weight: 950;
  color: #eaf4ff;
  letter-spacing: -0.08em;
}

.hero-mark::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 34px;
  border: 3px solid rgba(90, 160, 255, 0.72);
  border-left: 0;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  right: 12px;
  top: 11px;
  opacity: 0.75;
}

.action-card.primary-action,
.quick-actions .primary-action {
  background:
    linear-gradient(180deg, rgba(28, 35, 39, 0.96), rgba(17, 22, 24, 0.92)) !important;
  border-color: var(--voice-card-highlight-border) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.22) !important;
}

.action-card.primary-action:hover,
.quick-actions .primary-action:hover {
  background:
    linear-gradient(180deg, rgba(32, 40, 45, 0.98), rgba(19, 25, 28, 0.94)) !important;
  border-color: rgba(90, 160, 255, 0.52) !important;
}

.action-card.primary-action .action-icon {
  background: rgba(47, 130, 255, 0.13) !important;
}

.owner-editor {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(90, 160, 255, 0.22);
  border-radius: 14px;
  background: rgba(47, 130, 255, 0.045);
}

.owner-editor-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--docs-muted, #a6b3c2);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.owner-editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.owner-editor label {
  display: grid;
  gap: 5px;
}

.owner-editor input {
  min-width: 0;
}

.owner-editor-message {
  color: var(--docs-muted, #a6b3c2);
  font-size: 0.86rem;
}

@media (max-width: 800px) {
  .owner-editor-grid {
    grid-template-columns: 1fr;
  }
}
