.search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-height: 400px;
    background-color: #fff;
    border: 1px solid #a855f7;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    display: none;
    z-index: 10000;
    overflow-y: auto;
    box-sizing: border-box
}

/* Responsive width matching input field */
@media (max-width: 1200px) {
    .search-suggestions {
        width: 90%;
    }
}

@media (max-width: 1080px) {
    .search-suggestions {
        width: 80%;
    }
}

@media (max-width: 968px) {
    .search-suggestions {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .search-suggestions {
        width: 100%;
        left: 0;
        right: 0;
    }
}

.suggestion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
    opacity: 1;
}



.suggestion-list::-webkit-scrollbar {
    width: 12px
}

.suggestion-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .2);
    border-radius: 4px
}

.suggestion-list::-webkit-scrollbar-thumb {
    background-color: #a855f7;
    border-radius: 4px
}

.suggestion-list li:hover,
.suggestion-list-item.focus,
.suggestion-list-item.selected {
    background-color: rgba(168, 85, 247, .2);
    border-left: 3px solid #a855f7;
}

.suggestion-list a,
.suggestion-list a:active,
.suggestion-list a:hover,
.suggestion-list a:visited {
    text-decoration: none
}

.suggestion-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(168, 85, 247, .5);
    color: #fff;
    cursor: pointer
}

.suggestion-info h3,
.suggestion-name {
    font-size: 1rem;
    color: #000;
    text-decoration: none
}

.suggestion-list li:last-child {
    border-bottom: none
}

.suggestion-image {
    width: 50px;
    height: 75px;
    margin-right: 10px;
    flex-shrink: 0;
    overflow: hidden
}

.suggestion-actor-image {
    width: 75px;
    height: 60px;
    margin-right: 10px;
    border-radius: 50%
}

.suggestion-info,
.suggestion-info h3,
.suggestion-name {
    width: 100%;
    text-align: center
}

.suggestion-info {
    flex-grow: 1;
    display: flex;
    justify-content: center
}

.suggestion-info h3 {
    margin: 0 0 5px;
    font-weight: 500
}

.suggestion-info p {
    margin: 0;
    font-size: .8rem;
    color: #a855f7
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #999
}

