/* =========================
   🔍 SEARCH BOX
========================= */
.ptk-search-box {
  position: relative;
  width: 100%;
}

/* ช่อง input */
#ptk-search-input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #212121; /* 🔥 ตามที่คุณต้องการ */
  color: #fff;
}

/* =========================
   📌 STICKY BAR
========================= */
#ptk-sticky-search {
  position: sticky;
  top: 0;
  z-index: 9999;

  background: #000;
  padding: 10px 15px;
  border-bottom: 1px solid #222;

  transition: transform 0.3s ease;
  will-change: transform;
}

/* =========================
   📋 RESULT DROPDOWN
========================= */
#ptk-search-result {
  position: absolute;
  width: 100%;
  background: #181818;
  z-index: 999;
  border-radius: 8px;
  margin-top: 5px;
  max-height: 300px;
  overflow-y: auto;
}

/* =========================
   📄 ITEM
========================= */
.ptk-item {
  padding: 10px;
  border-bottom: 1px solid #222;
}

.ptk-item a {
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.ptk-item:hover {
  background: #222;
}

/* ประเภท */
.ptk-type {
  font-size: 12px;
  opacity: 0.6;
}

/* =========================
   📢 STATES
========================= */
.ptk-loading,
.ptk-empty,
.ptk-error {
  padding: 10px;
  text-align: center;
  color: #aaa;
}