.song-history-list {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 1.2rem auto;
    background: rgba(0,255,255,0.07);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,255,255,0.10);
    padding: 1rem 0.5rem;
}
.song-history-list h2 {
    color: #00fff0;
    font-size: 1.2rem;
    margin: 0 0 0.7em 0;
    font-weight: 700;
    text-align: left;
}
.song-history-list {
    overflow-y: auto;
    max-height: 320px;
    background: #181818;
    border-radius: 10px;
    padding: 1rem 0.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    scrollbar-width: thin;
    scrollbar-color: #888 #222;
    contain: content;
}
.song-history-list::-webkit-scrollbar {
    width: 8px;
}
.song-history-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}
.song-history-list::-webkit-scrollbar-track {
    background: #222;
    border-radius: 8px;
}
.song-history-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid #232323;
    content-visibility: auto;
    contain-intrinsic-size: 56px;
}
.song-history-item:last-child {
    border-bottom: none;
}
.song-history-art {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: #222;
    display: block;
}
.song-history-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.song-history-title {
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-history-artist {
    color: #bbb;
    font-size: 0.97rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-history-time {
    color: #b2eaff;
    font-size: 0.93rem;
    min-width: 60px;
    text-align: right;
}
@media (max-width: 700px) {
    .song-history-list {
        max-height: 38vh;
        padding: 0.7rem 0.1rem;
    }
    .song-history-title, .song-history-artist {
        font-size: 0.93rem;
    }
    .song-history-art {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 430px) {
    .song-history-list {
        max-height: 28vh;
        padding: 0.5rem 0.01rem;
    }
    .song-history-title, .song-history-artist {
        font-size: 0.82rem;
    }
    .song-history-art {
        width: 22px;
        height: 22px;
    }
}
