/* ARTIZS.SAY v0.5.12 — Stable Refresh History + Clipboard Image Paste */

/* Pending image preview: used by file picker, clipboard screenshots, and drag/drop. */
.image-draft{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 7px;
  padding:8px 10px;
  border:1px solid #E2E8F0;
  border-radius:12px;
  background:#F8FAFC;
  box-shadow:0 5px 18px rgba(15,23,42,.035);
}
.image-draft.hidden{display:none!important}
.image-draft img{
  width:74px;
  height:54px;
  flex:0 0 auto;
  object-fit:cover;
  border-radius:9px;
  border:1px solid #E2E8F0;
  background:#fff;
}
.image-draft-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
  gap:1px;
  line-height:1.3;
}
.image-draft-copy strong{font-size:11px;color:#0F172A;font-weight:800}
.image-draft-copy span{
  max-width:360px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:9px;
  color:#64748B;
}
.image-draft-copy small{font-size:9px;color:#94A3B8}
.image-draft-remove{
  width:28px;
  height:28px;
  margin-left:auto;
  flex:0 0 auto;
  border:0;
  border-radius:999px;
  background:#E2E8F0;
  color:#475569;
  font-size:18px;
  line-height:1;
  cursor:pointer;
}
.image-draft-remove:hover{background:#CBD5E1;color:#0F172A}

/* Give a subtle cue when an image is dragged over the composer. */
.composer.is-dragging-image{
  border-color:#94A3B8!important;
  box-shadow:0 0 0 3px rgba(148,163,184,.18)!important;
  background:#F8FAFC!important;
}

html[data-theme="dark"] .image-draft{
  background:#171D25;
  border-color:#303A48;
  box-shadow:none;
}
html[data-theme="dark"] .image-draft img{border-color:#303A48;background:#11161D}
html[data-theme="dark"] .image-draft-copy strong{color:#F8FAFC}
html[data-theme="dark"] .image-draft-copy span{color:#CBD5E1}
html[data-theme="dark"] .image-draft-copy small{color:#94A3B8}
html[data-theme="dark"] .image-draft-remove{background:#2A3442;color:#CBD5E1}
html[data-theme="dark"] .image-draft-remove:hover{background:#3B4757;color:#fff}
html[data-theme="dark"] .composer.is-dragging-image{background:#171D25!important;border-color:#64748B!important}

@media (max-width: 700px){
  .image-draft{padding:7px 8px;gap:8px}
  .image-draft img{width:62px;height:48px}
  .image-draft-copy span{max-width:190px}
  .image-draft-copy small{display:none}
}
