/* Recently Played Section */
.recently-played-section {
    background: white;
    padding: 20px;
    border-top: 1px solid #eee;
}

.recently-played-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recently-played-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.recently-played-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.recently-played-item:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.recently-played-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.recently-played-info {
    flex: 1;
    min-width: 0;
}

.recently-played-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.recently-played-artist {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

