/**
 * GoTicketing Elementor: Order Confirmation Tickets widget
 *
 * This stylesheet styles only the widget wrapper/mount/placeholder.
 * The attendee modal + ticket PDF modal have their own dedicated stylesheets.
 */

.goticketing-order-confirmation-widget {
  position: relative;
}

/* Keep the (legacy) mount point non-intrusive on the page */
.goticketing-order-confirmation-widget .goticketing-pdf-mount,
.goticketing-pdf-mount[data-mode="buttons"] {
  display: block;
  width: 100%;
  min-height: 1px;
  margin: 0;
  padding: 0;
}

/* In-widget warning message */
.goticketing-order-confirmation-warning {
  margin: 0 0 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f8f9fa;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}
.goticketing-order-confirmation-warning p:last-child {
  margin-bottom: 0;
}
.goticketing-order-confirmation-warning--info {
  background: #eef6ff;
  border-color: rgba(0, 115, 170, 0.25);
}
.goticketing-order-confirmation-warning--warning {
  background: #fff8e6;
  border-color: rgba(255, 193, 7, 0.35);
}
.goticketing-order-confirmation-warning--success {
  background: #ecfdf3;
  border-color: rgba(40, 167, 69, 0.35);
}

/* Make the download list sit nicely in the widget area */
.goticketing-order-confirmation-widget .goticketing-pdf-downloads-container {
  margin: 0;
}

/* Elementor editor placeholder */
.goticketing-editor-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
}

.goticketing-editor-placeholder .goticketing-search-editor-placeholder p {
  margin: 0;
  font-weight: 700;
}

.goticketing-editor-placeholder .goticketing-editor-placeholder-note {
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.8;
  font-size: 12px;
}

