.bowa-search-bar {
    position: relative;
    max-width: 720px;
    margin: 14px auto;
}

#bowa-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(16,24,40,0.04);
    outline: none;
}

#bowa-search-input:focus {
    border-color: #60a5fa;
    box-shadow: 0 6px 18px rgba(59,130,246,0.08);
}

#bowa-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}

.bowa-search-item {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bowa-search-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.bowa-search-item:hover {
    background: #f8fafc;
}

.bowa-icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
}

.bowa-title {
    font-size: 14px;
    color: #111827;
}

.bowa-recent-search {
    font-style: italic;
    color: #475569;
}

.bowa-recent-search:hover {
    background: #f1f5f9;
}

.bowa-clear-history {
    text-align: center;
    font-weight: 600;
    color: #b91c1c;
    cursor: pointer;
    border-top: 1px solid #f1f5f9;
    background: #fff7f7;
}

.bowa-clear-history:hover {
    background: #fee2e2;
}

.bowa-no-result {
    padding: 10px 14px;
    color: #6b7280;
}
