/* Üstte kayan başarı / hata kutusu */
#topFlashBox{
  position:fixed; z-index:99999;
  top:10px; left:50%; transform:translateX(-50%);
  width:30%; min-width:100px; max-width:250px;
  background:#5cb85c; color:#fff;
  border-radius:6px; padding:14px 18px;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
  font:600 15px/1.35 inherit;
  display:flex; flex-direction:column; gap:4px;
  animation:flashEnter .35s ease;
}
#topFlashBox.error{
  background:#f2dede; color:#a94442; border:1px solid #e4b9b9;
}
#topFlashBox .mini{ font-weight:400; font-size:14px; opacity:.94; }

/* X butonunu tamamen gizle */
#topFlashBox .close{ display:none !important; }

@keyframes flashEnter{
  from{opacity:0; transform:translate(-50%,-12px);}
  to{opacity:1; transform:translate(-50%,0);}
}
.flashHide{
  opacity:0!important; transform:translate(-50%,-8px)!important;
  transition:opacity .40s ease, transform .40s ease;
}