/* 프롬프트 칸 '지우기' — 입력칸 오른쪽 아래에 조용히 앉아 있다가
   쓴 글이 있을 때만 나타난다. */
.arife-draft-clear-v1250{
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:5;
  padding:5px 11px;
  border:1px solid rgba(151,197,231,.34);
  border-radius:999px;
  background:rgba(255,255,255,.5);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  color:#41506a;
  font:600 11.5px/1 inherit;
  font-family:inherit;
  cursor:pointer;
  opacity:.72;
  transition:opacity .18s ease, background .18s ease, color .18s ease;
}
.arife-draft-clear-v1250:hover{
  opacity:1;
  background:rgba(255,255,255,.72);
  color:#1b2430;
}
.arife-draft-clear-v1250[hidden]{ display:none; }

/* 어두운 화면(모션 작업실)에서는 반대 톤으로 */
body:not([data-glass-page]) .arife-draft-clear-v1250{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#c8d3de;
}
body:not([data-glass-page]) .arife-draft-clear-v1250:hover{
  background:rgba(255,255,255,.16);
  color:#fff;
}
