
.wp-ai-summary {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.wp-ai-summary__btn {
  cursor: pointer;
  background-color: #0183D0;
  color: white;
  padding: 8.5px 17px;
  border-radius: 0.5em;
  transition: all 0.3s ease;
  border: none;
  width: fit-content;
}
.wp-ai-summary__btn:hover {
  background-color: white;
  color: rgb(1, 131, 208);
 
}

.wp-ai-summary__output.done {
  margin-top: 10px;
  white-space: pre-wrap;
  border: solid 1px #0183D0;
  border-radius: 0.5em;
  padding: .5em;
  background: white;
  background-color: #ffffff;
  box-shadow: 10px 10px 0px 0px #0183D0;
  margin-bottom: 2em;
}

