/* ===== Quote Boxes ===== */
.bz-quote-row {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.bz-quote-box {
  flex: 1;
  padding: 14px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: #fff;
}

.bz-buy-box {
  opacity: 0.6;
  cursor: default;
  user-select: none;
}

.bz-quote-arrow {
  font-size: 18px;
}

/* ===== Modal ===== */
.bz-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}
.bz-modal.is-open {
  display: block;
}

.bz-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.bz-modal-dialog {
  position: relative;
  max-width: 760px;
  width: calc(100% - 30px);
  margin: 6vh auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  z-index: 2;
}

.bz-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index:1;
}

body.bz-modal-open {
  overflow: hidden;
}

