/* ════════════════════════════════════════════════════════════
 * search.css — B3.1 Mesaj arama kutusu + sonuç paneli
 * ════════════════════════════════════════════════════════════ */
.rh-search {
  width: 140px; height: 28px; box-sizing: border-box;
  background: var(--bg, #1e1f22); border: none; border-radius: 4px;
  padding: 0 10px; font-size: 14px; color: var(--text, #dbdee1); outline: none;
  transition: width .15s;
}
.rh-search::placeholder { color: var(--muted, #949ba4); }
.rh-search:focus { width: 200px; }

.msg-search-panel {
  position: fixed; z-index: 500; width: 420px; max-width: 92vw; max-height: 60vh; overflow-y: auto;
  background: var(--panel, #2b2d31); border: 1px solid rgba(0,0,0,.3); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); display: none; padding: 6px;
}
.msg-search-panel.open { display: block; }
.mss-head { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--muted, #949ba4); padding: 6px 8px; }
.mss-loading, .mss-empty { padding: 18px; text-align: center; color: var(--muted, #949ba4); font-size: 14px; }
.mss-item { padding: 8px 10px; border-radius: 4px; cursor: pointer; }
.mss-item:hover { background: rgba(255,255,255,.05); }
.mss-meta { font-size: 12px; color: var(--muted, #949ba4); margin-bottom: 2px; }
.mss-nick { font-weight: 600; color: var(--head, #f2f3f5); }
.mss-text { font-size: 14px; color: var(--text, #dbdee1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* aranan mesaja gidince kısa vurgu */
.msg.msg-flash { animation: msgFlash 1.6s ease; }
@keyframes msgFlash {
  0%, 100% { background: transparent; }
  15%, 55% { background: rgba(88,101,242,.22); }
}

@media (max-width: 768px) { .rh-search { width: 90px; } .rh-search:focus { width: 130px; } }
