
.custom-search-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}
.custom-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.search-input-wrapper {
    position: relative;
}
#custom-search {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.2rem;
    color: #9ca3af;
}
#search-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px;
    position: relative;
    z-index: 1000;
}
#search-suggestions li {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #eee;
}
#search-suggestions li a {
    text-decoration: none;
    color: #1d4ed8;
    font-weight: 500;
}
#search-suggestions li.no-result {
    color: #6b7280;
}
#search-suggestions li:hover {
    background: #f3f4f6;
}
