/* Window */
.uela-window {
  position: fixed;
  border: 1px solid;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: auto;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

.uela-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 5px 8px;
  cursor: move;
}

.uela-close-button {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  margin: 0px;
  padding: 0px;
  width: 25px;
  height: 25px;
  transition-duration: 0.4s;
}

.uela-content {
  flex-grow: 1;
  padding: 8px;
  overflow: auto;
}

/* Buttons */
.uela-button-container {
  position: absolute;
  bottom: 0px;
  width: 90%;
  display: flex;
  justify-content: space-around;
  padding: 10px 10px 20px 10px;
}

.uela-yes-button, .uela-no-button {
  padding: 5px 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  transition-duration: 0.4s;
}

/* Iframe */
.uela-iframe {
  border-style: none;
  width: 100%;
  height: calc(100% - 4px);
  zoom: 1;
  -moz-transform: scale(1);
  -moz-transform-origin: 0 0;
  -o-transform: scale(1);
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}