.dwe-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.dwe-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.dwe-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.dwe-close:hover,
.dwe-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.dwe-download-links ul {
    list-style-type: none;
    padding: 0;
}

.dwe-download-links li {
    margin-bottom: 10px;
}

.dwe-success {
    color: green;
}

.dwe-error {
    color: red;
}
.dwe-ul {
  list-style-type: disc;
  margin-top: 0px;
  padding-left: 0px;
}

.dwe-li {
  display: list-item;
  margin-bottom: 16px;
  line-height: 26px;
  list-style-type: none;
}

.dwe-li .dwe-label {
  font-weight: 700;
  margin-bottom: 5px;
}

.dwe-li .input-container input {
  background-color: rgb(238, 238, 238);
  border-radius: 5px;
  cursor: text;
  font-size: 14px;
  height: 40px;
  line-height: 23.8px;
  padding: 20px 12px;
  width: 100%;
}

.dwe-submit {
  align-items: flex-start;
  background-color: rgb(255, 144, 0);
  border-bottom-color: rgb(255, 144, 0);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-left-color: rgb(255, 144, 0);
  border-left-style: solid;
  border-left-width: 3px;
  border-right-color: rgb(255, 144, 0);
  border-right-style: solid;
  border-right-width: 3px;
  border-top-color: rgb(255, 144, 0);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-style: solid;
  border-top-width: 3px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-block;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 41px;
  padding: 8px;
  text-align: center;
  user-select: none;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-rtl-ordering: logical;
}

.dwe-disclaimer {
    font-size: 0.875rem;
    font-style: italic;
    line-height: 15px;
    margin-top: 15px;
}

/* Default style for the modal */
.dwe-modal-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

/* Apply narrower width on mobile devices */
@media (max-width: 767px) {
    .dwe-modal-content {
        width: calc(100% - 20px); /* This will create a 20px margin on both sides */
    }
    .dwe-disclaimer {
        font-size: 0.775rem;
    }
}

