#bsb-wrapper {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

#bsb-search {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    width: 100%;
    outline: none;
}

#bsb-button {
    margin-top: 10px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background-color: #7b2cbf;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.4);
}

#bsb-button:hover {
    transform: scale(1.05);
}

#bsb-results {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

#bsb-results li {
    border-bottom: 1px solid #eee;
}

#bsb-results li:last-child {
    border-bottom: none;
}

#bsb-results li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

#bsb-results li a:hover {
    background-color: #f0f0f0;
}
