#ub-aem-dialog {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#ub-aem-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
}

#ub-aem-dialog form {
  width: fit-content;
  margin: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
}

#ub-aem-dialog .dialog-close {
  cursor: pointer;
  text-align: center;
}

.aem-alert-msg-title {
  margin: 0.5rem 0;
  padding: 0.5rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.aem-alert-msg-content {
  overflow-y: auto;
  max-height: 55vh;
  margin: 0.5rem 0;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem;
}

.aem-alert-msg-postDate {
  margin: 0.25rem 0;
  padding: 0 0.25rem;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
}

.aem-alert-msg-postDate::before {
  content: "發布日期：";
}

.dialog-close {
  width: 100%;
  padding: 10px;
  color: #ffffff;
  border-radius: 0;
  border-radius: 0 0 10px 10px;
  background-color: #6fd3ce;
  font-size: 14px;
  font-weight: 900;
}

#ub-aem-dialog .checkbox {
  padding: 16px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  color: white;
}

#ub-aem-dialog .checkbox .icon {
  border: 1px solid white;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

#ub-aem-dialog .checkbox input[type="checkbox"]:checked + .icon {
  border: none;
  background: url("../assets/Checkbox.svg") no-repeat center / contain;
}

/* 可調END */
