#ssp-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10%;
}
#ssp-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#ssp-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}
#ssp-results {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}
#ssp-results li {
    border-bottom: 1px solid #eee;
}
#ssp-results li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: background 0.2s;
}
#ssp-results li a:hover {
    background: #f7f7f7;
}
#ssp-results li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}
#ssp-results li.no-results {
    padding: 10px;
    text-align: center;
    color: #666;
}
