.paste-status-text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.72;
}

.paste-textarea {
  display: block;
  width: 100%;
  min-height: 320px;
  padding: 14px 16px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  resize: vertical;
  outline: none;
  font: 400 14px/1.65 "SF Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body.light-mode .paste-textarea {
  background: rgba(0, 0, 0, 0.04);
}

.paste-textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.paste-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.paste-actions .glassy {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  color: inherit;
  cursor: pointer;
  font: 600 13px/1 "Noto Sans", sans-serif;
}

.paste-actions .glassy:disabled {
  opacity: 0.5;
  cursor: default;
}

.paste-expiry {
  appearance: none;
  -webkit-appearance: none;
  min-height: 40px;
  padding: 0 30px 0 14px;
  border-radius: 10px;
  color: inherit;
  cursor: pointer;
  font: 600 13px/1 "Noto Sans", sans-serif;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.paste-expiry option {
  background: #1a1a2e;
  color: #fff;
}

body.light-mode .paste-expiry {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(0,0,0,0.5)' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
}

body.light-mode .paste-expiry option {
  background: #f0f0f0;
  color: #111;
}

body.light-mode .paste-status-text {
  opacity: 0.62;
}

body.light-mode .paste-textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

@media (max-width: 620px) {
  .paste-textarea {
    min-height: 260px;
    padding: 12px 14px;
  }

  .paste-actions {
    flex-wrap: wrap;
  }
}
