#aps-search {
    position: relative;
    max-width: 400px;
}
#aps-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#aps-results {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
#aps-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#aps-results li {
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
}
#aps-results li a {
    text-decoration: none;
    color: #333;
    display: block;
}
#aps-results li:hover {
    background: #f5f5f5;
}
#aps-results h4 {
    margin: 8px 10px;
    font-size: 14px;
    color: #666;
}
