
#pasteArea {
    border: 2px dashed #ccc;
    padding: 10px;
    min-height: 60px;
    margin-bottom: 20px;
}

#output {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.entry {
    border: 1px solid #aaa;
    margin-bottom: 10px;
    padding: 10px;
    position: relative;
}

.paste-item {
  position: relative;
  border: 1px solid #ccc;
  padding: 10px 30px;
  background: #f9f9f9;
  overflow-wrap: break-word;
}

.remove-btn,
.copy-btn {
  position: absolute;
  top: 5px;
  background: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 12px;
}

.remove-btn {
  right: 5px;
  background: crimson;
}

.remove-btn:hover {
  background: darkred;
}

.copy-btn {
  left: 5px;
  background: seagreen;
}

.copy-btn:hover {
  background: darkgreen;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 5px;
}

pre,
div[contenteditable="true"] {
  white-space: pre-wrap;
  word-break: break-word;
}

#spellcheckToggle {
  margin: 10px 0;
  display: inline-block;
}

.blk {
  display: inline-block;
}

button {
  font-size: 20px; /* normal text size */
}

.icon {
  font-size: 24px;
  /* margin-right: 5px; /* optional spacing */
}