.sqrq-easy-quote-modal {
  display: none;
  position: fixed;
  z-index: 99999; /* Increased z-index */
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.sqrq-easy-quote-modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sqrq-easy-quote-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
.sqrq-easy-quote-close:hover {
  color: #000;
}

.sqrq-multi-quote-btn, .sqrq-easy-quote-btn {
  background: transparent;
  color: #00b5d0;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid currentColor;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}
.sqrq-multi-quote-btn:hover, .sqrq-easy-quote-btn:hover {
  border-color: #003e62;
  color: #fff;
  background: #003e62;
}
