#ssp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
#ssp-search-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}
#ssp-search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}
#ssp-results {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
}
#ssp-results li {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
}
#ssp-results li:hover {
    background: #f0f0f0;
}
#ssp-results a {
    text-decoration: none;
    color: #333;
}
