:root {
  color-scheme: light;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f6f7f9;
  padding: 0.75rem;
}

h2 {
  margin: 0;
}

.ctn {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 auto;
  padding: 14px;
  border-radius: 0.5rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cfd3d8;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

textarea {
  min-height: 76px;
  resize: vertical;
}

textarea {
  min-height: 76px;
  resize: vertical;
}

button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 600;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

#output {
  background-color: #0d1117;
  color: #e6edf3;
  white-space: pre-wrap;
  padding: 1rem;
  border-radius: 0.5rem;
}

.actions-button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

#loadMr {
  background: #8250df;
  color: #fff;
}

#clearDraftBtn,
#clearToken {
  background: #cf222e;
  color: #fff;
}

#toggleTokenBtn {
  background: #6e7781;
  color: #fff;
}

#copyBtn {
  background: #2da44e;
  color: #fff;
}

#currentDay {
  text-transform: capitalize;
}

@media screen and (max-width: 468px) {
  .actions-button {
    flex-direction: column;
  }

  button {
    padding: 1rem;
  }
}