/* modal.css */
#quoteOptionsModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#quoteOptionsModal .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

#quoteOptionsModal .modal-content span#closeModal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

#quoteOptionsModal .modal-content a,
#quoteOptionsModal .modal-content button {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

#quoteOptionsModal .modal-content a {
  color: #fff;
}

#quoteOptionsModal a[href^="tel:"] {
  background: #f57c00;
}

#quoteOptionsModal a[href^="https://wa.me"] {
  background: #25d366;
}

#quoteOptionsModal a[href^="mailto:"] {
  background: #333;
}

#quoteOptionsModal button#closeModalBottom {
  background: #ccc;
  border: none;
  color: #000;
}
