/* ==========================================================
   DIYNEWS UNIVERSAL AJAX LIVE SEARCH STYLING
   ========================================================== */
.diy-search-wrapper {
    position: relative; /* Kunci agar pop-up melayang pas di bawah kotak input */

}

.diy-live-search-results {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999; /* Sangat tinggi agar menembus elemen menu dan slider */
    overflow: hidden;
    max-height: 380px; /* Membatasi tinggi maksimum pop-up agar estetik */
    overflow-y: auto;
    text-align: left;
}

.diy-live-search-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none !important;
    color: #212529 !important;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease-in-out;
}

.diy-live-search-item:last-child {
    border-bottom: none;
}

.diy-live-search-item:hover {
    background: #f9fafb !important;
    border-left: 3px solid #d32f2f; /* Aksen merah khas berita saat disorot */
}

.diy-search-msg {
    color: #6b7280;
    padding: 15px;
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
}
/* ==========================================================
   TOMBOL SELENGKAPNYA DI BAGIAN BAWAH POPUP LIVE SEARCH
   ========================================================== */
.diy-live-search-more-btn {
    display: block !important;
    background: #f8fafc;
    color: #1e3a8a !important; /* Warna biru tegas */
    text-align: center;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    border-top: 1px solid #e2e8f0;
    transition: background 0.2s ease-in-out, color 0.2s;
}

.diy-live-search-more-btn:hover {
    background: #1e3a8a; /* Berubah menjadi biru pekat saat disorot */
    color: #ffffff !important;
}
