/* Ox Designer — My Account */

/* —— Mis Diseños table —— */
.ox-my-designs-table .ox-my-designs__thumb {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #f3f4f6;
  border-radius: 8px;
  display: block;
  cursor: zoom-in;
}
.ox-my-designs-table .woocommerce-button {
  margin: 0 4px 4px 0;
}
.ox-my-designs-table .ox-my-designs__delete {
  color: #b42318;
  border-color: #fda29b;
  background: #fff;
}
.ox-my-designs-table .ox-my-designs__delete:hover,
.ox-my-designs-table .ox-my-designs__delete:focus {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}
.ox-my-designs-table td.ox-my-designs__actions {
  white-space: nowrap;
}
.ox-my-designs-table td.woocommerce-orders-table__cell:first-child {
  width: 140px;
}
.ox-my-designs__preview {
  display: inline-block;
  line-height: 0;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

/* Lightbox */
.ox-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.ox-lightbox.is-open {
  display: flex;
}
.ox-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}
.ox-lightbox__panel {
  position: relative;
  z-index: 1;
  max-width: min(920px, 96vw);
  max-height: 92vh;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.ox-lightbox__panel img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 48px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.ox-lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
