.search-wrapper {
    position: relative;
    width: 100%;
}
.custom-search-input {
    width: 100%;
}
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: var(--radius) 0 0 var(--radius);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 4px 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.search-dropdown li {
    padding: 10px 16px;
    cursor: pointer;
    color: #475569;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.search-dropdown li:hover {
    background-color: #eeeeee;
    color: var(--color-primary);
}
.search-dropdown li mark {
    background-color: transparent;
    color: #2563eb;
    font-weight: 600;
}
.search-dropdown .no-results {
    padding: 12px 16px;
    color: #94a3b8;
    font-style: italic;
    cursor: default;
}
.search-dropdown .no-results:hover {
    background-color: transparent;
    color: #94a3b8;
}
