.fanscribr-suggestions {
    position: absolute;         /* floats above other content */
    z-index: 1000;              /* stays on top */
    width: 70%;                /* matches the input width */
    max-height: 250px;          /* prevents huge lists */
    overflow-y: auto;           /* scroll if needed */
    background-color: #fff;     /* default background */
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow */
    padding: 0;
    margin-top: 2px;
}

.fanscribr-suggestions > div.suggestion-item {
    padding: 1em;
    cursor: pointer;
    color: #333;
}

.fanscribr-suggestions > div.suggestion-item:hover {
    background-color: var(----text-fanscribr-color); /* primary bootstrap color */
    color: #fff;               /* white text on hover */
}

#fanscribr-form div.control-group{
    margin-bottom: 0;
}

.suggestion-item .suggest-cat{
    margin-bottom: 2px;
}