.dtb-confirm-dialog {
  padding: 20px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dtb-confirm-dialog p {
  margin: 0;
  line-height: 1.5;
}

.dtb-confirm-dialog > div {
  text-align: right;
  margin-top: 1em;
}

.dtb-confirm-dialog .dtb-confirm-button,
.dtb-confirm-dialog .dtb-cancel-button {
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.dtb-confirm-dialog .dtb-confirm-button {
  background-color: #007bff;
  color: white;
}

.dtb-confirm-dialog .dtb-cancel-button {
  background-color: #6c757d;
  color: white;
}

.dtb-confirm-dialog .dtb-confirm-button:hover,
.dtb-confirm-dialog .dtb-cancel-button:hover {
  opacity: 0.9;
}

/* International Phone Field Styles */
.dtb-international-phone-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
}

.dtb-international-phone-country {
  min-width: 120px;
  max-width: 180px;
  width: auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 25px; /* Add space for the select arrow */
  position: relative;
}
