/*
 * Shared popup top-edge treatment.
 * Matches the rounded red top edge used by the Sales Report import panel.
 */
:root {
  --nexus-popup-accent: #df0038;
  --nexus-popup-top-radius: 18px;
}

/* Keep the dialog/shadow silhouette aligned with the rounded popup surface. */
.cloud-dialog,
.promo-pdf-dialog,
.notes-dialog,
.money-count-vault-dialog,
.money-count-confirm,
.store-layout-share-dialog {
  border-top-left-radius: var(--nexus-popup-top-radius);
  border-top-right-radius: var(--nexus-popup-top-radius);
}

/* Standardize the visible popup surface throughout Store Nexus. */
.cloud-dialog-card,
.promo-pdf-card,
.notes-dialog-card,
.money-count-vault-card,
.money-count-confirm-card,
.store-layout-share-dialog {
  border-top: 3px solid var(--nexus-popup-accent);
  border-top-left-radius: var(--nexus-popup-top-radius);
  border-top-right-radius: var(--nexus-popup-top-radius);
  background-clip: padding-box;
}
