#recent-songs-sidebar {
    width: 100%;
}

#recent-songs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rss-song-item {
    display: flex;
    align-items: center;
    background: #efefef;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.rss-art {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    margin-right: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.rss-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.rss-artist {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rss-title {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rss-time {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
.recent-sep {
   width: 100%; 
   text-align: center; 
   border-bottom: 1px solid #BEBEBE; 
   line-height: 0.1em;
   margin: 10px 0 20px; 
} 

.recent-sep span { 
   background: #f0f0f0;
   padding:0 10px; 
}
/* View More Button styling to match song cards */
#recent-songs-sidebar .view-more-btn {
    display: block;                  /* full width in sidebar */
    font-size: 14px;
    width: 100%;
    text-align: center;
    background-color: #efefef;       /* same as song card bg */
    color: #000;                  /* text color */
    padding: 4px 0;                 /* spacing similar to cards */
    border-radius: 12px;             /* match card rounding */
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* subtle card shadow */
    font-weight: 600;
    text-decoration: none;           /* remove underline if using <a> */
    margin-top: 10px;                /* spacing from last card */
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}

#recent-songs-sidebar .view-more-btn:hover {
    background-color: #b9b9b9;       /* slightly lighter on hover */
    transform: translateY(-2px);     /* subtle lift effect */
}