.song-suggestions {
    position: static;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(238, 171, 141, 1);
    border: 2px solid white;
    border-top: none;
    border-radius: 0;
    padding-right: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0;
    box-sizing: border-box;
    display: none;
}

.song-suggestions.active {
    display: block;
}

.song-suggestions li {
    padding: 0.75em 1em;
    cursor: pointer;
    font-size: 14pt;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: bold;
    color: #ffffff;
    list-style: none;
}

.song-suggestions li:hover {
    background: rgba(155, 241, 255, 0.2);
}

.song-suggestions::-webkit-scrollbar {
    width: 8px;
}

.song-suggestions::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.song-suggestions::-webkit-scrollbar-track {
    background: transparent;
}
