.news-search-icon {
    background: transparent;   /* ব্যাকগ্রাউন্ড রিমুভ */
    color: #000;               /* কালো কালার */
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-search-icon:hover {
    transform: scale(1.1);
}
.news-search-icon svg {
    stroke: #000; /* আইকন কালো */
}

/* Popup search box */
.news-search-box {
    display: none;
    position: absolute;
    top: 100%;          /* আইকনের নিচে */
    right: 0;
    margin-top: 8px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    width: 320px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.news-search-box.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
#news-search-input {
    width: 100%;
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
#news-search-results {
    margin-top: 10px;
}
#news-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#news-search-results li {
    padding: 8px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 8px;
    align-items: center;
}
#news-search-results li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
#news-search-results li a {
    color: #222;
    text-decoration: none;
}
#news-search-results li a:hover {
    color: #0073e6;
}
