:root {
  --dpp-navy: #14234b;
  --dpp-blue: #2563eb;
  --dpp-blue-dark: #1d4ed8;
  --dpp-teal: #0f9f8f;
  --dpp-ink: #172033;
  --dpp-muted: #667085;
  --dpp-border: #e4e8f0;
  --dpp-soft: #f5f7fb;
  --dpp-white: #fff;
}

.dpp-editor-page,
.dpp-public-page {
  color: var(--dpp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dpp-editor-page { max-width: 1440px; margin: 0 auto; }

.dpp-editor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.dpp-title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dpp-editor-header h1 { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: -.025em; }
.dpp-editor-header p { margin: 7px 0 0; color: var(--dpp-muted); font-size: 14px; line-height: 1.55; max-width: 700px; }

.dpp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.dpp-status i { width: 7px; height: 7px; border-radius: 50%; background: #98a2b3; }
.dpp-status.is-published { background: #ecfdf3; color: #067647; }
.dpp-status.is-published i { background: #12b76a; box-shadow: 0 0 0 3px #d1fadf; }
.dpp-status.is-suspended { background: #fff1f0; color: #b42318; }
.dpp-status.is-suspended i { background: #f04438; }

.dpp-preview-link,
.dpp-button {
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.dpp-preview-link { display: inline-flex; align-items: center; gap: 7px; color: #344054; padding: 9px 12px; border: 1px solid #d0d5dd; background: #fff; white-space: nowrap; }
.dpp-preview-link:hover { border-color: #98a2b3; box-shadow: 0 2px 5px rgba(16,24,40,.06); }
.dpp-preview-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.dpp-alert { padding: 13px 15px; border: 1px solid; border-radius: 10px; margin-bottom: 18px; font-size: 13px; line-height: 1.55; }
.dpp-alert.is-success { background: #ecfdf3; border-color: #abefc6; color: #067647; }
.dpp-alert.is-neutral { background: #f8fafc; border-color: #dce3ed; color: #475467; }
.dpp-alert.is-error { background: #fff4f3; border-color: #fecdca; color: #b42318; }
.dpp-alert ul { margin: 7px 0 0 19px; padding: 0; }

.dpp-editor-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 24px; align-items: start; }
.dpp-editor-main { min-width: 0; }

.dpp-editor-panel {
  background: #fff;
  border: 1px solid var(--dpp-border);
  border-radius: 13px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(16,24,40,.025);
}
.dpp-panel-heading { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; }
.dpp-panel-heading h2 { margin: 0; font-size: 16px; line-height: 1.35; letter-spacing: -.01em; }
.dpp-panel-heading p { margin: 3px 0 0; color: var(--dpp-muted); font-size: 12px; line-height: 1.5; }
.dpp-step { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 8px; background: #eef4ff; color: #3538cd; font-size: 11px; font-weight: 800; }

.dpp-photo-editor { display: flex; gap: 16px; align-items: center; }
.dpp-editor-avatar { width: 84px; height: 84px; border-radius: 18px; object-fit: cover; border: 1px solid #e4e7ec; box-shadow: 0 3px 10px rgba(16,24,40,.08); }
.dpp-editor-initials { display: grid; place-items: center; background: linear-gradient(145deg, #dbeafe, #e0e7ff); color: #3448a4; font-size: 23px; font-weight: 800; }
.dpp-photo-controls { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.dpp-photo-controls small { width: 100%; color: #98a2b3; font-size: 11px; }
.dpp-upload-form { display: flex; align-items: center; }
.dpp-file-button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #d0d5dd; border-radius: 8px; background: #fff; color: #344054; font-size: 12px; font-weight: 700; cursor: pointer; }
.dpp-file-button:hover { border-color: #98a2b3; background: #f9fafb; }
.dpp-file-button input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.dpp-file-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.dpp-text-danger { padding: 3px 0; border: 0; background: transparent; color: #d92d20; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }

.dpp-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.dpp-span-2 { grid-column: 1 / -1; }
.dpp-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; margin: 0; }
.dpp-field > span,
.dpp-field > label > span,
.dpp-field legend { color: #344054; font-size: 12px; font-weight: 700; }
.dpp-field b { color: #d92d20; }
.dpp-field input,
.dpp-field textarea,
.dpp-url-input input,
.dpp-share-row input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #101828;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.dpp-field input { height: 39px; padding: 0 11px; }
.dpp-field textarea { padding: 10px 11px; resize: vertical; line-height: 1.5; }
.dpp-field input:focus,
.dpp-field textarea:focus,
.dpp-url-input input:focus { border-color: #528bff; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.dpp-field input::placeholder,
.dpp-field textarea::placeholder { color: #98a2b3; }
.dpp-field small { color: #98a2b3; font-size: 10.5px; line-height: 1.45; }
.dpp-check { display: flex; align-items: center; gap: 6px; color: #667085; font-size: 11px; cursor: pointer; }
.dpp-check input { width: 14px; height: 14px; accent-color: var(--dpp-blue); }

.dpp-choice-field { border: 0; padding: 0; }
.dpp-choice-field legend { margin-bottom: 7px; }
.dpp-segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dpp-segmented label { cursor: pointer; }
.dpp-segmented input { position: absolute; opacity: 0; pointer-events: none; }
.dpp-segmented span { display: grid; place-items: center; min-height: 36px; border: 1px solid #d0d5dd; border-radius: 8px; color: #475467; background: #fff; font-size: 12px; font-weight: 650; }
.dpp-segmented input:checked + span { border-color: #84adff; background: #eff4ff; color: #1849a9; box-shadow: inset 0 0 0 1px #84adff; }
.dpp-segmented input:focus-visible + span { outline: 3px solid rgba(37,99,235,.18); }

.dpp-money-input { display: flex; align-items: center; border: 1px solid #d0d5dd; border-radius: 8px; overflow: hidden; height: 39px; }
.dpp-money-input:focus-within { border-color: #528bff; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.dpp-money-input span { padding-left: 11px; color: #667085; font-size: 13px; }
.dpp-money-input input { border: 0; box-shadow: none !important; min-width: 0; padding: 0 6px; }
.dpp-money-input em { padding-right: 10px; color: #98a2b3; font-size: 10px; font-style: normal; font-weight: 700; }

.dpp-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; padding-top: 2px; }
.dpp-switch > input { position: absolute; opacity: 0; }
.dpp-switch-ui { position: relative; width: 37px; height: 21px; border-radius: 99px; background: #d0d5dd; transition: background .18s; flex: 0 0 auto; }
.dpp-switch-ui::after { content: ""; position: absolute; width: 17px; height: 17px; top: 2px; left: 2px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(16,24,40,.25); transition: transform .18s; }
.dpp-switch input:checked + .dpp-switch-ui { background: #12b76a; }
.dpp-switch input:checked + .dpp-switch-ui::after { transform: translateX(16px); }
.dpp-switch input:focus-visible + .dpp-switch-ui { outline: 3px solid rgba(37,99,235,.18); }
.dpp-switch strong, .dpp-switch small { display: block; }
.dpp-switch strong { font-size: 12px; color: #344054; }
.dpp-switch small { margin-top: 1px; color: #98a2b3; font-size: 10.5px; }

.dpp-link-panel { background: #f8faff; border-color: #d9e4ff; }
.dpp-url-input { position: relative; display: flex; align-items: center; border: 1px solid #b9ccf9; border-radius: 9px; background: #fff; overflow: hidden; }
.dpp-url-input > span { padding-left: 11px; color: #667085; font-size: 12px; white-space: nowrap; }
.dpp-url-input input { border: 0; border-radius: 0; padding: 10px 9px 10px 2px; color: #1849a9; font-weight: 700; box-shadow: none !important; }
.dpp-url-input input[readonly] { color: #667085; cursor: not-allowed; }
.dpp-url-input svg { width: 16px; height: 16px; margin-right: 11px; fill: none; stroke: #98a2b3; stroke-width: 1.8; flex: 0 0 auto; }

.dpp-save-bar { position: sticky; bottom: 14px; z-index: 4; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 14px; margin: 0 0 18px; border: 1px solid #dce3ed; border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 8px 24px rgba(16,24,40,.12); backdrop-filter: blur(10px); }
.dpp-save-bar p { margin: 0; color: #667085; font-size: 11px; }
.dpp-save-bar strong { color: #344054; }
.dpp-button { display: inline-flex; align-items: center; justify-content: center; min-height: 37px; padding: 0 14px; }
.dpp-button:active { transform: translateY(1px); }
.dpp-button.is-primary { color: #fff; background: var(--dpp-blue); }
.dpp-button.is-primary:hover { background: var(--dpp-blue-dark); }
.dpp-button.is-secondary { color: #344054; border: 1px solid #d0d5dd; background: #fff; }
.dpp-button.is-secondary:hover { background: #f9fafb; }
.dpp-button.is-publish { color: #fff; background: #079455; }
.dpp-button.is-publish:hover { background: #067647; }
.dpp-button:disabled { background: #e4e7ec; color: #98a2b3; cursor: not-allowed; transform: none; }

.dpp-publish-panel { display: flex; gap: 15px; border-color: #d6e4ff; background: linear-gradient(135deg, #f5f8ff, #fff); padding: 22px; }
.dpp-publish-panel.is-live { border-color: #abefc6; background: linear-gradient(135deg, #ecfdf3, #fff); }
.dpp-publish-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; border-radius: 11px; background: #e0eaff; color: #3538cd; font-weight: 800; }
.dpp-publish-icon.is-live { background: #d1fadf; color: #067647; }
.dpp-publish-icon.is-suspended { background: #fee4e2; color: #b42318; }
.dpp-publish-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; }
.dpp-publish-copy { min-width: 0; flex: 1; }
.dpp-publish-copy h2 { margin: 1px 0 4px; font-size: 16px; }
.dpp-publish-copy > p { margin: 0 0 14px; color: #667085; font-size: 12px; line-height: 1.5; }
.dpp-publish-checklist { padding: 11px 13px; margin: 12px 0; border-radius: 8px; background: #fff; border: 1px solid #d9e4ff; color: #475467; font-size: 11px; line-height: 1.5; }
.dpp-publish-checklist ul { margin: 5px 0 0 17px; padding: 0; }
.dpp-publish-form { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.dpp-consent-check { display: flex; align-items: flex-start; gap: 9px; max-width: 740px; color: #475467; font-size: 11px; line-height: 1.5; cursor: pointer; }
.dpp-consent-check input { margin-top: 2px; flex: 0 0 auto; accent-color: #079455; }
.dpp-share-row { display: flex; gap: 7px; margin-top: 12px; }
.dpp-share-row input { min-width: 0; flex: 1; padding: 0 10px; color: #067647; background: #fff; }
.dpp-unpublish-form { margin-top: 12px; }

.dpp-preview-sticky { position: sticky; top: 82px; }
.dpp-preview-heading { display: flex; justify-content: space-between; align-items: baseline; margin: 0 3px 9px; }
.dpp-preview-heading span { color: #344054; font-size: 12px; font-weight: 750; }
.dpp-preview-heading small { color: #98a2b3; font-size: 9.5px; }
.dpp-preview-frame { padding: 15px; border-radius: 22px; background: #edf1f7; border: 1px solid #dce3ed; box-shadow: inset 0 1px 2px rgba(16,24,40,.04); }
.dpp-preview-frame .dpp-profile-card { font-size: .84em; border-radius: 16px; box-shadow: 0 8px 25px rgba(29,41,57,.08); }
.dpp-preview-frame .dpp-card-hero { padding: 20px 18px 14px; gap: 13px; }
.dpp-preview-frame .dpp-photo { width: 79px; height: 79px; }
.dpp-preview-frame .dpp-availability { font-size: 7.5px; max-width: 90px; padding: 3px 5px; }
.dpp-preview-frame .dpp-identity h1 { font-size: 19px; }
.dpp-preview-frame .dpp-card-section { padding: 14px 18px; }
.dpp-preview-frame .dpp-facts { margin: 0 18px 5px; }
.dpp-preview-frame .dpp-contact { padding: 14px 18px 19px; }

/* Shared public profile card ------------------------------------------------ */
.dpp-profile-card { width: 100%; overflow: hidden; border: 1px solid #e4e8f0; border-radius: 22px; background: #fff; box-shadow: 0 16px 50px rgba(20,35,75,.09); }
.dpp-card-hero { display: flex; align-items: center; gap: 22px; padding: 31px 32px 23px; background: linear-gradient(145deg, #f8fbff 0%, #fff 57%, #f1f8f7 100%); border-bottom: 1px solid #edf0f5; }
.dpp-photo-wrap { position: relative; flex: 0 0 auto; }
.dpp-photo { display: block; width: 128px; height: 128px; border-radius: 28px; object-fit: cover; border: 4px solid #fff; box-shadow: 0 7px 22px rgba(20,35,75,.16); }
.dpp-photo-placeholder { display: grid; place-items: center; box-sizing: border-box; background: linear-gradient(145deg, #dbeafe, #e0e7ff); color: #3448a4; font-size: 35px; font-weight: 800; letter-spacing: -.04em; }
.dpp-availability { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); display: inline-flex; align-items: center; justify-content: center; gap: 5px; width: max-content; max-width: 145px; padding: 5px 8px; border-radius: 999px; border: 2px solid #fff; background: #ecfdf3; color: #067647; font-size: 9px; line-height: 1.15; font-weight: 750; text-align: center; box-shadow: 0 2px 7px rgba(16,24,40,.12); }
.dpp-availability i { width: 6px; height: 6px; border-radius: 50%; background: #12b76a; flex: 0 0 auto; }
.dpp-availability.is-closed { background: #f2f4f7; color: #667085; }
.dpp-availability.is-closed i { background: #98a2b3; }
.dpp-identity { min-width: 0; }
.dpp-eyebrow { margin: 0 0 5px; color: var(--dpp-teal); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dpp-identity h1,
.dpp-identity h2 { margin: 0; color: var(--dpp-navy); font-size: 29px; line-height: 1.12; letter-spacing: -.035em; overflow-wrap: anywhere; }
.dpp-specialty { margin: 6px 0 0; color: #344054; font-size: 15px; line-height: 1.35; font-weight: 650; }
.dpp-license, .dpp-institution { margin: 5px 0 0; color: #7b8495; font-size: 10.5px; line-height: 1.4; }
.dpp-license span { font-weight: 650; }
.dpp-card-section { padding: 20px 32px; border-bottom: 1px solid #edf0f5; }
.dpp-intro h2 { margin: 0 0 8px; color: var(--dpp-navy); font-size: 19px; line-height: 1.35; letter-spacing: -.018em; }
.dpp-intro p { margin: 0; color: #5f6879; font-size: 13px; line-height: 1.65; white-space: pre-line; overflow-wrap: anywhere; }
.dpp-card-section h3 { margin: 0 0 12px; color: #344054; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.dpp-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin: 17px 32px 0; }
.dpp-fact { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 10px 11px; border-radius: 10px; background: #f6f8fb; }
.dpp-fact svg, .dpp-location-row svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: #5875b9; stroke-width: 1.7; }
.dpp-fact span { display: block; margin-bottom: 2px; color: #98a2b3; font-size: 8px; font-weight: 650; text-transform: uppercase; letter-spacing: .06em; }
.dpp-fact strong { display: block; color: #344054; font-size: 10.5px; line-height: 1.3; }
.dpp-quick-contact { padding: 17px 32px 3px; }
.dpp-services { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 16px; margin: 0; padding: 0; list-style: none; }
.dpp-services li { display: flex; align-items: flex-start; gap: 7px; color: #475467; font-size: 11.5px; line-height: 1.45; overflow-wrap: anywhere; }
.dpp-services li span { display: grid; place-items: center; width: 16px; height: 16px; flex: 0 0 16px; margin-top: 1px; border-radius: 50%; background: #ecfdf3; color: #079455; font-size: 9px; font-weight: 900; }
.dpp-location { display: grid; gap: 11px; }
.dpp-location-row { display: flex; align-items: flex-start; gap: 10px; }
.dpp-location-row strong { display: block; color: #344054; font-size: 12px; line-height: 1.4; }
.dpp-location-row p { margin: 2px 0 0; color: #667085; font-size: 11px; line-height: 1.5; white-space: pre-line; overflow-wrap: anywhere; }
.dpp-contact { padding: 20px 32px 28px; }
.dpp-primary-cta { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 47px; border-radius: 11px; background: #079455; color: #fff; font-size: 13px; font-weight: 750; text-decoration: none; box-shadow: 0 5px 14px rgba(7,148,85,.22); transition: background .15s ease, transform .15s ease; }
.dpp-primary-cta:hover { background: #067647; transform: translateY(-1px); }
.dpp-primary-cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.dpp-secondary-actions { display: flex; justify-content: center; gap: 9px 18px; flex-wrap: wrap; margin-top: 14px; }
.dpp-secondary-actions a { display: inline-flex; align-items: center; gap: 5px; color: #475467; font-size: 10.5px; font-weight: 650; text-decoration: none; }
.dpp-secondary-actions a:hover { color: var(--dpp-blue); }
.dpp-secondary-actions svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.dpp-contact-placeholder { margin: 0; padding: 10px; border-radius: 8px; background: #f8fafc; color: #98a2b3; font-size: 10px; text-align: center; }

/* Standalone public page ---------------------------------------------------- */
.dpp-public-page { min-height: 100vh; margin: 0; background: radial-gradient(circle at 12% 0%, #e8f0ff 0, transparent 32%), radial-gradient(circle at 90% 92%, #e4f5f1 0, transparent 30%), #f5f7fb; }
.dpp-preview-banner { position: sticky; top: 0; z-index: 5; display: flex; justify-content: center; align-items: center; gap: 24px; padding: 10px 20px; background: #14234b; color: #fff; font-size: 12px; box-shadow: 0 2px 10px rgba(20,35,75,.18); }
.dpp-preview-banner a { color: #c7d7fe; font-weight: 700; }
.dpp-public-shell { width: min(100% - 32px, 640px); margin: 0 auto; padding: 48px 0 30px; }
.dpp-powered-by { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 7px; margin-top: 18px; color: #7b8495; font-size: 10px; text-align: center; }
.dpp-powered-by > div { display: flex; align-items: center; gap: 7px; }
.dpp-powered-by a { display: inline-flex; color: #52699e; }
.dpp-powered-by img { width: 105px; height: 20px; object-fit: contain; }
.dpp-powered-by p { max-width: 520px; margin: 0; line-height: 1.5; }

[hidden] { display: none !important; }

@media (max-width: 1180px) {
  .dpp-editor-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; }
}

@media (max-width: 980px) {
  .dpp-editor-grid { grid-template-columns: 1fr; }
  .dpp-preview-column { display: none; }
  .dpp-preview-sticky { position: static; }
  .dpp-preview-frame { max-width: 430px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .dpp-editor-header { align-items: stretch; flex-direction: column; gap: 13px; }
  .dpp-preview-link { align-self: flex-start; }
  .dpp-editor-panel { padding: 16px; border-radius: 11px; }
  .dpp-form-grid { grid-template-columns: 1fr; }
  .dpp-span-2 { grid-column: auto; }
  .dpp-photo-editor { align-items: flex-start; }
  .dpp-editor-avatar { width: 70px; height: 70px; border-radius: 15px; }
  .dpp-segmented { grid-template-columns: 1fr; }
  .dpp-save-bar { bottom: 8px; }
  .dpp-save-bar p { display: none; }
  .dpp-save-bar .dpp-button { width: 100%; }
  .dpp-publish-panel { padding: 17px; }
  .dpp-publish-icon { display: none; }
  .dpp-share-row { flex-wrap: wrap; }
  .dpp-share-row input { flex-basis: 100%; height: 38px; }
  .dpp-public-shell { width: min(100% - 20px, 640px); padding-top: 20px; }
  .dpp-preview-banner { justify-content: space-between; gap: 10px; font-size: 10px; }
  .dpp-card-hero { align-items: flex-start; gap: 15px; padding: 22px 18px 19px; }
  .dpp-photo { width: 88px; height: 88px; border-radius: 20px; border-width: 3px; }
  .dpp-availability { max-width: 104px; font-size: 8.5px; padding: 4px 6px; }
  .dpp-identity h1, .dpp-identity h2 { font-size: 22px; }
  .dpp-specialty { font-size: 13px; }
  .dpp-card-section { padding: 17px 18px; }
  .dpp-facts { margin: 14px 18px 0; grid-template-columns: 1fr; }
  .dpp-quick-contact { padding: 14px 18px 2px; }
  .dpp-services { grid-template-columns: 1fr; }
  .dpp-contact { padding: 18px 18px 23px; }
  .dpp-url-input { display: block; padding-top: 8px; }
  .dpp-url-input > span { display: block; max-width: calc(100% - 22px); overflow: hidden; text-overflow: ellipsis; padding: 0 11px 3px; }
  .dpp-url-input input { padding: 7px 11px 10px; }
  .dpp-url-input svg { position: absolute; right: 0; margin-top: -31px; }
}

.dpp-maps-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; padding: 7px 14px;
  background: #EFF6FF; color: #1565B8;
  border: 1px solid #BFDBFE; border-radius: 9px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
}
.dpp-maps-link:hover { background: #DBEAFE; }
.dpp-maps-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

.dpp-share-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin: 14px auto 0; max-width: 560px;
}
.dpp-share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 11px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; font-family: inherit;
  flex: 1 1 220px;
}
.dpp-share-btn svg { width: 17px; height: 17px; }
.dpp-share-wa { background: #25D366; color: #fff; }
.dpp-share-wa svg { fill: currentColor; }
.dpp-share-wa:hover { background: #1FB958; }
.dpp-share-img { background: #fff; color: #1565B8; border: 1.5px solid #BFDBFE; }
.dpp-share-img:hover { background: #EFF6FF; }
.dpp-share-img:disabled { opacity: .6; cursor: wait; }

.dpp-ai-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.dpp-ai-button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 9px; cursor: pointer;
  background: #F5F3FF; color: #6D28D9; border: 1.5px solid #DDD6FE;
  font-size: 13px; font-weight: 700; font-family: inherit;
}
.dpp-ai-button:hover { background: #EDE9FE; }
.dpp-ai-button:disabled { opacity: .6; cursor: wait; }
.dpp-ai-button svg { width: 15px; height: 15px; }
.dpp-ai-hint { color: #6B7280; font-size: 12px; }
.dpp-ai-hint.is-error { color: #B91C1C; }
