/* Container */
#fs-search-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

/* Nút search */
#fs-search-btn {
    background: #1087fe;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Ô nhập liệu */
#fs-search-box {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

#fs-search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

/* Kết quả tìm kiếm */
#fs-search-results {
    margin-top: 8px;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
}

#fs-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#fs-search-results li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

#fs-search-results li:hover {
    background: #f9f9f9;
}

#fs-search-results a {
    text-decoration: none;
    color: #333;
}

/* Mobile: hiển thị ở góc dưới */
@media (max-width: 768px) {
    #fs-search-container {
        top: auto;
        bottom: 80px;   /* cách đáy 80px, không quá sát */
        right: 20px;
    }

    #fs-search-box {
        top: auto;
        bottom: 60px;   /* box hiển thị phía trên nút */
    }
}