#customSearchBox {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}
#customSearchBox:focus-within {
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.4);
}
#searchInput {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 15px;
    outline: none;
    height: 46px;
}
#searchBtn {
    background: #008000;
    border: none;
    width: 50px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
#searchBtn:hover { background: #006400; }
#searchBtn:active { background: #004d00; }
#searchBtn img { width: 18px; height: 18px; }
#searchSuggestions {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
#searchSuggestions li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}
#searchSuggestions li:hover {
    background: #f7f9fc;
    color: #61CE70;
    font-weight: 600;
}
#searchSuggestions strong {
    color: #008000;
}
